.vmm-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: inherit;
}

.vmm-album-section {
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e2e8f0;
}

.vmm-album-section:last-child {
    border-bottom: none;
}

.vmm-album-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 30px;
    position: relative;
    padding-left: 15px;
    border-left: 6px solid #4a5568;
}

.vmm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.vmm-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.vmm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.vmm-card-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.vmm-play-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.vmm-card-image:hover .vmm-play-overlay {
    opacity: 1;
}

.vmm-play-icon {
    font-size: 3rem;
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.vmm-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.vmm-song-title {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
    line-height: 1.3;
}

.vmm-song-title a {
    color: #2d3748;
    text-decoration: none;
}

.vmm-song-title a:hover {
    color: #4a5568;
}

.vmm-song-story {
    font-size: 0.95rem;
    color: #718096;
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.vmm-btn {
    display: inline-block;
    background: #4a5568;
    color: #fff !important;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s ease;
    margin-top: auto;
}

.vmm-btn:hover {
    background: #2d3748;
}

/* -------------------------------------
 * Single Post "Drift" Injection
 * ------------------------------------- */

.vmm-drift-layout {
    display: flex;
    flex-wrap: wrap;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.vmm-drift-left {
    flex: 0 0 240px;
    background: transparent;
    display: flex;
    flex-direction: column;
}

.vmm-drift-cover {
    width: 240px;
    height: 240px;
}

.vmm-drift-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vmm-drift-badges {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    background: #fff;
    border-right: 1px solid #e2e8f0;
}

.vmm-drift-badges img {
    height: 60px;
    width: auto;
    transition: transform 0.2s ease;
}

.vmm-drift-badges img:hover {
    transform: scale(1.05);
}

.vmm-drift-right {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.vmm-drift-title {
    margin: 0 0 5px 0;
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a202c;
}

.vmm-drift-meta {
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 20px;
}

.vmm-drift-meta strong {
    color: #2d3748;
}

.vmm-license-footer {
    display: flex;
    align-items: center;
    margin-top: auto;
    font-size: 0.9rem;
}

.vmm-btn-download-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.vmm-btn-download {
    background: #3182ce;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.vmm-btn-download:hover {
    background: #2b6cb0;
    color: #fff;
}

.vmm-badge-free-text {
    font-weight: 600;
    color: #2b6cb0;
    background: #ebf4ff;
    padding: 6px 12px;
    border-radius: 12px;
}

.vmm-badge-reserved {
    font-weight: 600;
    color: #718096;
    background: #edf2f7;
    padding: 8px 16px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .vmm-drift-left {
        flex: 0 0 100%;
    }
    .vmm-drift-cover {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
    }
    .vmm-drift-badges {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
}
