﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.resources-container {
    background-color: #f9fafb;
    padding: 64px 32px;
}

.resources-wrapper {
    max-width: 1152px;
    margin: 0 auto;
}

.resources-title {
    font-size: 27px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1e3a8a;
}

.panels-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .panels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .panels-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}        

.panel-card {
    background-color: white;
    border-radius: 12px;
    border: 2px solid #1e3a8a;
    padding: 32px;
    transition: all 0.3s ease;
}

.panel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(30, 58, 138, 0.1), 0 10px 10px -5px rgba(30, 58, 138, 0.04);
    border-color: #2563eb;
}

.panel-title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1e3a8a;
}

.panel-description {
    color: #4b5563;
    margin-bottom: 14px;
    line-height: 1.6;
    font-size: 15px;
    padding-top:12px; 
}

.panel-link {
    display: inline-flex;
    align-items: center;
    color: #1e3a8a;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.panel-link:hover {
    color: #1e40af;
}

.panel-link:hover .arrow-icon {
    transform: translateX(4px);
}

.arrow-icon {
    margin-left: 8px;
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
}

/* Header spacing */
.header-logo {
    margin-right: 16px;
}

/* Album artwork styling */
.album-artwork {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.vc-album-placeholder {
    text-align: center;
    padding-top:18px; 
}

/* Contact info styling */
.contact-info {
    line-height: 1.8;
}

.contact-info a {
    color: #1e3a8a;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}