.latest-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.latest-header h2 {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}
.latest-header a.more-btn {
    font-size: 14px;
    color: #337ab7;
    padding: 4px 8px;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.2s;
}
.latest-header a.more-btn:hover {
    background: #f0f0f0;
}
.story-goods-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin: 20px 0;
}
.story-good-item {
    border: 1px solid #ddd;
    padding: 12px;
    text-decoration: none;
    color: inherit;
    border-radius: 8px;
    background: #fff;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.05);
    transition: 0.2s ease;
}
.story-good-item:hover {
    transform: translateY(-4px);
    box-shadow: 3px 3px 10px rgba(0,0,0,0.1);
}
.story-good-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
}
.story-good-item h3 {
    font-size: 16px;
    margin: 0 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.story-good-item .summary {
    font-size: 13px;
    color: #555;
    margin: 0 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.story-good-item .hit {
    font-size: 12px;
    color: #888;
}
.story-good-item .hit i {
    margin-right: 4px;
}
.latest-footer-line {
    border-top: 3px solid #337ab7; /* 파란색 진하게 */
    margin: 40px 0 20px;
    clear: both;
}

/* 썸네일 감싸는 영역 */
.story-good-item .thumb-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

/* 유튜브 오버레이 아이콘 */
.story-good-item.youtube-thumb .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,0,0,0.85);
    color: #fff;
    font-size: 28px;
    padding: 14px 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.4);
}
