/* --- Section Container --- */
.section-zodiac-light {
    background-color: #ffffff;
    padding: 80px 0;
    width: 100%;
}

/* --- Header Styling (MATCHING THEME) --- */
.section-zodiac-light .zodiac-header {
    margin-bottom: 50px;
    text-align: center; /* Centered like Legacy */
}

.section-zodiac-light .section-title {
    font-family: var(--font-secondary);
    font-size: 36px; /* Match Legacy/Vanguard size */
    font-weight: 900; /* Extra Bold */
    color: #000000; /* Pitch Black Text */
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.section-zodiac-light .section-subtitle {
    font-size: 16px;
    color: #555;
    margin: 0 auto;
    font-family: var(--font-primary);
    max-width: 600px;
}

/* --- The Grid System --- */
.zodiac-grid {
    display: grid;
    gap: 40px 20px;
    justify-content: center;
    padding: 0 15px;
}

/* Mobile: 3 Columns */
@media (max-width: 767px) {
    .zodiac-grid { grid-template-columns: repeat(3, 1fr); }
    .section-zodiac-light .section-title { font-size: 28px; }
}

/* Tablet: 4 Columns */
@media (min-width: 768px) and (max-width: 1023px) {
    .zodiac-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Desktop: 6 Columns */
@media (min-width: 1024px) {
    .zodiac-grid { grid-template-columns: repeat(6, 1fr); }
}

/* --- Zodiac Card Styling --- */
.zodiac-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.zodiac-card:hover {
    transform: translateY(-5px);
}

/* Circle Icon Wrapper */
.zodiac-icon-circle {
    width: 80px;
    height: 80px;
    background-color: #f3f4f6; /* Very light grey */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.zodiac-card:hover .zodiac-icon-circle {
    background-color: #fff;
    border-color: #ff2a55; /* Theme Brand Pink Border */
    box-shadow: 0 5px 15px rgba(255, 42, 85, 0.15);
}

/* SVG Styling */
.zodiac-svg {
    width: 36px;
    height: 36px;
    color: #222;
    transition: color 0.3s ease;
}

.zodiac-card:hover .zodiac-svg {
    color: #ff2a55; /* Brand Pink Icon */
}

.zodiac-svg svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* Text Styling */
.zodiac-name {
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 800;
    color: #000;
    margin: 0 0 5px 0;
    text-align: center;
    text-transform: uppercase;
}

.zodiac-date {
    font-size: 12px;
    color: #888;
    text-align: center;
    font-weight: 500;
}