.browse-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.browse-tile {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 8px 8px 8px 8px;
    border: 1px solid #d9d9d9;
    overflow: hidden;
    transition: transform 0.25s ease,
                box-shadow 0.25s ease;
}

.browse-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.browse-image {
    overflow: hidden;
}

.browse-image img {
    display: block;
    width: 100%;
    height: 225px; /* Reduced by 50% */
    object-fit: cover;
    transition: transform 0.4s ease;
}

.browse-tile:hover .browse-image img {
    transform: scale(1.05);
}

.browse-content {
    padding: 24px;
    background: #f5f5f5;
}

.browse-content h3 {
    margin: 0 0 12px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #243a73;
    line-height: 1.2;
}

.browse-content p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
}

@media (max-width: 991px) {
    .browse-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .browse-image img {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .browse-grid {
        grid-template-columns: 1fr;
    }

    .browse-image img {
        height: 280px;
    }

    .browse-content {
        padding: 20px;
    }

    .browse-content h3 {
        font-size: 1.20rem;
    }

    .browse-content p {
        font-size: 1rem;
    }
}
.quick-links {
    padding: 10px 0;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.quick-link-card {
    background: #1f3166;
    color: #ffffff;
    text-decoration: none;
    border-radius: 18px;
    padding: 28px 22px;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.quick-link-card:hover {
    transform: translateY(-4px);
    background: #253c79;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.quick-link-card h3 {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
}

.phone-number {
    font-size: 24px;
    font-weight: 600;
    color: #ffb81c;
    line-height: 1;
    margin-bottom: 18px;
}

.quick-link-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

/* Tablet */
@media (max-width: 992px) {
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .quick-link-card {
        padding: 24px 20px;
        min-height: auto;
    }

    .quick-link-card h3 {
        font-size: 18px;
    }

    .phone-number {
        font-size: 32px;
    }

    .quick-link-card p {
        font-size: 16px;
    }
}
.WidgetContainer__contentList+.WidgetContainer__contentList {
    margin-top: 1.5rem;
}
.resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.resource-card {
    display: block;
    padding: 22px 24px;
    background: #f7f7f7;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}

.resource-card:hover {
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.resource-card h3 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 700;
    color: #172f63;
}

.resource-card p {
    margin: 0 0 24px;
    font-size: 17px;
    line-height: 1.45;
    color: #6f7684;
}

.resource-card span {
    font-size: 18px;
    font-weight: 700;
    color: #172f63;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .resource-card {
        padding: 20px;
    }
}

.Header__homeNavbarFixed .Header__searchSubCont {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: Header__slideInDown;
    animation-name: Header__slideInDown;
    background-color: #0d1f69;
    -webkit-box-shadow: 0 .1875rem .9375rem 0 #c4c4c4;
    -moz-box-shadow: 0 .1875rem .9375rem 0 #c4c4c4;
    box-shadow: 0 .1875rem .9375rem 0 #c4c4c4;
    left: 0;
    padding: 1rem 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 4;
}
