/* Insight hero — Figma breakpoints */

.insight-hero {
    position: relative;
    width: 100%;
    background-color: #000;
    background-image:
        linear-gradient(-90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 65%),
        linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)),
        var(--insight-hero-image, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    box-sizing: border-box;
    overflow: hidden;
}

.insight-hero--no-image {
    background-image:
        linear-gradient(-90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 65%),
        linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22));
}

.insight-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 200px 16px 100px;
    max-width: var(--akdev-section-max, 1440px);
    margin: 0 auto;
    box-sizing: border-box;
}

.insight-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.insight-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 10px;
    background: #151515;
    border: 1px solid #5c5c5c;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.insight-hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1b6986;
    flex-shrink: 0;
}

.insight-hero__badge-text {
    font-family: Gilroy, sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
    background: linear-gradient(90deg, #00b8e0 0%, #91c73e 66%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.insight-hero__date {
    font-family: Gilroy, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    color: #fff;
}

.insight-hero__text {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 100%;
}

.insight-hero__title {
    margin: 0;
    font-family: Gilroy, sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 1.15;
    color: #fff;
}

.insight-hero__description {
    margin: 0;
    font-family: Gilroy, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #fff;
}

@media (min-width: 768px) {
    .insight-hero__inner {
        padding: 200px 16px;
    }

    .insight-hero__title {
        font-size: 56px;
    }

    .insight-hero__description {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .insight-hero__inner {
        padding-block: 200px 100px;
    }

    .insight-hero__title {
        font-size: 64px;
    }

    .insight-hero__description {
        max-width: calc(100% - 400px);
    }
}
