/* === HOMEPAGE RESTORATION === */
.intro-hero-section {
    padding: 1rem 0;
    background: #fff;
    /* Keep section background white */
    border-bottom: 1px solid transparent;
}

/* Info Panel Style */
.intro-hero-section .container {
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.intro-hero-section .container::before {
    content: none;
    display: none;
}

.intro-hero-section .entry-header {
    width: 100%;
}

.hero-main-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    color: #1E3A8A;
    display: block;
    margin-right: 0;
}

.hero-main-title::after {
    content: none;
}

.hero-description {
    font-size: 1rem;
    margin: 0;
    color: #1E40AF;
    line-height: 1.5;
    display: block;
}

.hero-description p {
    margin: 0;
    display: block;
}

@media (max-width: 768px) {
    .intro-hero-section .container {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 0.5rem;
    }

    .intro-hero-section .container::before {
        display: none;
    }

    /* Hide icon on mobile to save space if needed, or keep it */
    .hero-main-title {
        display: block;
        margin-bottom: 0.2rem;
    }

    .hero-main-title::after {
        content: '';
    }

    .hero-description {
        display: block;
    }
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.tab-item {
    font-weight: 600;
    color: #666;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all 0.2s;
    background: #f1f1f1;
}

.tab-item.active,
.tab-item:hover {
    background: var(--primary);
    color: white;
}

/* Picks Grid */
.picks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
}

.top-picks-section .picks-grid {
    grid-template-columns: repeat(3, 1fr);
}

.pick-card {
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: transform 0.2s;
    background: transparent;
    display: flex;
    flex-direction: column;
}

.pick-card:hover {
    transform: translateY(-5px);
}

.pick-image {
    width: 100%;
    aspect-ratio: 16/9;
    /* Widescreen ratio, shorter height */
    background: #f9f9f9;
    overflow: hidden;
    position: relative;
}

.pick-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.pick-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.pick-card:hover .pick-image img {
    transform: scale(1.05);
    /* Subtle zoom effect */
}

.pick-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pick-title {
    font-size: 1.15rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.pick-title a {
    color: var(--text-dark);
}

.pick-title a:hover {
    color: var(--primary);
}

.pick-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-top: auto;
    /* Push to bottom if needed or just space out */
}

/* Top Category Grid */
.top-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.top-cat-card {
    position: relative;
    height: 120px;
    border-radius: var(--card-radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.top-cat-card:hover {
    transform: translateY(-3px);
}

/* Gradients */
.grad-1 {
    background: linear-gradient(135deg, #FF9A9E 0%, #FECFEF 100%);
}

.grad-2 {
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
}

.grad-3 {
    background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.grad-4 {
    background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
}

@media(max-width: 992px) {

    .picks-grid,
    .top-cat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media(max-width: 576px) {

    .picks-grid,
    .top-cat-grid {
        grid-template-columns: 1fr;
    }

    .hero-main-title {
        font-size: 1.8rem;
    }
}

/* === Breadcrumbs === */
#breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

#breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#breadcrumbs a {
    color: var(--text-gray);
    font-weight: 500;
}

#breadcrumbs a:hover {
    color: var(--primary);
}

#breadcrumbs .separator {
    color: #cbd5e1;
    font-size: 0.8rem;
}

#breadcrumbs .item-current {
    color: #94a3b8;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 300px;
}

@media (max-width: 576px) {
    #breadcrumbs .item-current {
        display: none;
    }
}

/* Manset Style Card (Top Picks) */
.manset-style-card {
    height: 350px;
    /* Fixed taller height for impact */
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.manset-card-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.manset-style-card .pick-image {
    width: 100%;
    height: 100%;
    /* Fill card */
    background-color: #f0f0f0;
    transition: transform 0.6s ease;
    object-fit: cover;
}

.manset-style-card:hover .pick-image {
    transform: scale(1.05);
    /* Zoom Effect */
}

.manset-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 1;
}

.manset-card-content {
    color: white;
    transform: translateY(0);
    /* Always up */
    transition: all 0.4s ease;
    opacity: 1;
    /* Always visible */
}

/* On hover, slide up and show text - Kept for legacy or subtle effects if added later */
.manset-style-card:hover .manset-card-content {
    opacity: 1;
    transform: translateY(0);
}

.manset-card-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 0 10px 0;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.manset-card-desc {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #e5e7eb;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}