.company-principles {
    margin-bottom: 120px;
}

@media screen and (max-width: 1024px) {
    .company-principles {
        margin-bottom: 80px;
    }
}

.company-principles__row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

@media screen and (min-width: 1025px) {
    .company-principles__row > *:nth-child(-n + 3) {
        grid-column: span 2;
    }
    .company-principles__row > *:nth-child(n + 4) {
        grid-column: span 3;
    }
}


@media screen and (max-width: 1024px) {
    .company-principles__row  {
        grid-template-columns: 1fr;
    }
}

.company-principles__row-item {
    border-radius: 24px;
    border: 1px solid rgba(184, 207, 237, 0.36);
    padding: 24px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    isolation: isolate;
    backdrop-filter: blur(6px) saturate(118%);
    -webkit-backdrop-filter: blur(6px) saturate(118%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        inset 0 -1px 0 rgba(255, 255, 255, 0.06),
        0 8px 28px rgba(0, 0, 0, 0.26);
}

/* Clarity + Practical: top-right glow, full-card when-contact image, bottom-left glow only */
.company-principles__row-item--tr-bl {
    background:
        radial-gradient(ellipse 88% 72% at 96% 6%, rgba(115, 178, 215, 0.16) 0%, rgba(115, 172, 203, 0.05) 40%, transparent 66%),
        radial-gradient(ellipse 78% 70% at 8% 94%, rgba(115, 172, 203, 0.14) 0%, rgba(115, 172, 203, 0.04) 44%, transparent 64%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.22) 100%),
        url("../../../images/who-we-work-with/when-contact.png") right center / cover no-repeat,
        linear-gradient(168deg, rgba(12, 20, 34, 0.62) 0%, rgba(6, 10, 18, 0.52) 100%);
}

/* Professional Accountability: bottom-left glow only */
.company-principles__row-item--bl-only {
    background:
        radial-gradient(ellipse 82% 72% at 10% 92%, rgba(115, 172, 203, 0.15) 0%, rgba(115, 172, 203, 0.04) 46%, transparent 64%),
        linear-gradient(168deg, rgba(14, 24, 40, 0.62) 0%, rgba(6, 10, 18, 0.52) 100%);
}

/* Commercial + Long-term: right-side glow, full-card request image, bottom-left glow */
.company-principles__row-item--right-bl {
    background:
        radial-gradient(ellipse 95% 90% at 100% 42%, rgba(130, 188, 225, 0.14) 0%, rgba(115, 172, 203, 0.05) 40%, transparent 62%),
        radial-gradient(ellipse 78% 70% at 8% 94%, rgba(115, 172, 203, 0.14) 0%, rgba(115, 172, 203, 0.04) 44%, transparent 64%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.13) 0%, rgba(0, 0, 0, 0.2) 100%),
        url("../../../images/who-we-work-with/request.png") right center / cover no-repeat,
        linear-gradient(168deg, rgba(12, 20, 34, 0.62) 0%, rgba(6, 10, 18, 0.52) 100%);
}

.company-principles__row-item>*:not(:last-child) {
    margin-bottom: 8px;
}

.company-principles__title {
    font-size: 32px;
    font-weight: 400;
    line-height: 110%;
    background: linear-gradient(96deg, #E6E7EB -6.36%, #BDD3FA 81.94%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 32px;
}

@media screen and (max-width: 1024px) {
    .company-principles__title {
        font-size: 24px;
    }
}

.company-principles__subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 110%;
    background: linear-gradient(96deg, #E6E7EB -6.36%, #BDD3FA 81.94%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

@media screen and (max-width: 1024px) {
    .company-principles__subtitle {
        margin-bottom: 8px;
    }
}

.company-principles__item-top {
    display: flex;
    align-items: center;
    gap: 5px;
}

.company-principles__item-image{
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}

.company-principles__item-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 110%;
    background: linear-gradient(96deg, #E6E7EB -6.36%, #BDD3FA 81.94%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.company-principles__description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.125;
    color: #646466;
}

.company-principles__icon svg {
    display: block;
    max-width: 100%;
    margin-inline: auto;
}