/* ArmorSeed Insight Widget Styles */

.armor-seed-insight-widget {
    padding: 32px 0;
}

.insight-title-section {
    text-align: center;
    margin-bottom: 32px;
}

.insight-title {
    font-weight: bold;
    color: #012D63;
    font-size: 0.9375rem;
    letter-spacing: 0.1em;
    margin-bottom: 0;
    height: 50px;
}

.insight-sub-title {
    font-size: 3.625rem;
    color: #012D63;
    font-family: 'Spectral';
    font-weight: 900;
    line-height: 1;
    margin: 1rem 0;
}


.insight-title-underline {
    width: 100%;
    height: 2px;
    background-color: #012D63;
    margin: 0 auto;
}

.insights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    justify-items: center;
}

@media (min-width: 600px) {
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .insights-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.insight-card-wrapper {
    width: 100%;
    max-width: 400px;
}

.insight-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #FFFFFF;
}

    .insight-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

.insight-card-image {
    height: 200px;
    object-fit: cover;
}

.insight-category-banner {
    background-color: #012D63;
    color: white;
    padding: 12px 16px;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: .9;
}

.insight-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}
.insight-image-container picture {
    height: 310px;
    width: 100%;
    display: flex;
}


.insight-card-image {
    width: 100%;
    height: auto;
    display: block;
}

.insight-category-title {
    font-weight: bold;
    font-size: 1.625rem;
    letter-spacing: 0.05em;
    margin: 0;
    color: #FFFFFF;
    font-family: 'titillium-web';
    text-transform: uppercase;
}

.insight-card-content {
    flex-grow: 1;
    padding: 1rem 2rem;
}

.insight-featured-chip {
    color: #012D63;
    font-size: 1rem;
    font-weight: bold;
    padding: 0;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.insight-content-title {
    font-weight: bold;
    color: #012D63;
    line-height: 1.3;
    font-size: 1.625rem;
    margin: 0;
    font-family: Spectral, serif;
}


.insight-card-actions {
    padding: 0rem 1rem 1rem;
    padding-top: 0;
}

.insight-read-button {
    color: #012D63;
    font-weight: bold;
    font-size: 1.25rem;
    text-transform: none;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: color 0.3s ease;
    justify-content: right;
}

    .insight-read-button:hover {
        color: #1e3a5f!important;
    }

.insight-read-button-icon {
    font-size: 1rem;
}

.insight-load-more-section {
    text-align: center;
    margin: 3rem 0;
}

.insight-load-more-button {
    background-color: #7EB9FF;
    color: #012D63;
    padding: 12px 32px;
    border-radius: 25px;
    text-transform: none;
    font-size: 1.25rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    font-family: 'Titillium Web';
    transition: background-color 0.3s ease;
}

    .insight-load-more-button:hover {
        background-color: #1e3a5f;
        color: #FFFFFF;
    }

/* Container styles */
.insight-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 600px) {
    .insight-container {
        padding: 0 24px;
    }
}

.insight-read-button-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #7EB9FF;
    border-radius: 50%;
    margin-left: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.insight-read-button-icon-circle .material-icons.arrow-icon-bold {
    font-weight: 900;
    font-size: 1.375rem;
    color: #012D63;
}

.insight-container.armor-seed-insight-widget .insight-description {
    font-size: 1.125rem;
    color: #012D63;
    margin-top: 12px;
}

/* /armor seed left image adjustment */
.insight-container.armor-seed-image-left {
    max-width: 820px;
}

.armor-seed-image-left .insights-grid {
    grid-template-columns: repeat(1, 1fr);
}

@media (max-width: 1280px) {
    .armor-seed-image-left .insights-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .insight-sub-title {
        font-size: 2.125rem;
        color: #012D63;
    }
}

.armor-seed-image-left .insight-card-wrapper {
    max-width: none;
}

    .armor-seed-image-left .insight-card-wrapper .insight-card {
        flex-direction: row;
        width: 100%;
    }

    .armor-seed-image-left .insight-card-wrapper .insight-image-container {
        width: 40%;
    }

    .armor-seed-image-left .insight-card-wrapper .insight-category-banner {
        top: 0;
        bottom: auto;
    }

    .armor-seed-image-left .insight-card-wrapper .insight-card-body {
        width: 60%;
    }

    .armor-seed-image-left .insight-card-wrapper .insight-card-image {
        height: 100%;
        object-fit: cover;
    }
