.projects-highlight__layout {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 24px;
    align-items: start;
}

.projects-highlight__selectors {
    display: grid;
    gap: 14px;
}

.projects-highlight__selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 20px 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    color: #eef7ea;
    cursor: pointer;
    text-align: left;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.projects-highlight__selector:hover,
.projects-highlight__selector.is-active {
    transform: translateY(-3px);
    border-color: rgba(208, 223, 144, 0.42);
    box-shadow: 0 22px 38px rgba(0, 0, 0, 0.24);
}

.projects-highlight__selector span {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
}

.projects-highlight__selector i {
    color: #d9e97a;
    font-size: 18px;
}

.projects-highlight__stage {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    box-shadow: 0 24px 42px rgba(0, 0, 0, 0.22);
}

.projects-highlight__visual {
    min-height: 340px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.projects-highlight__content {
    padding: 28px;
    background:
        linear-gradient(180deg, rgba(17, 40, 27, 0.28), rgba(17, 40, 27, 0.16)),
        rgba(10, 24, 16, 0.26);
}

.projects-highlight__label {
    margin: 0 0 10px;
    color: #5f772f;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.projects-highlight__content h3 {
    margin: 0;
    color: #eef7ea;
    font-size: 31px;
    line-height: 1.05;
}

.projects-highlight__summary {
    margin: 16px 0 0;
    color: rgba(238, 247, 234, 0.82);
    line-height: 1.65;
}

.projects-highlight__list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.projects-highlight__content .home-cta-row {
    margin-top: 24px;
}

@media (max-width: 980px) {
    .projects-highlight__layout {
        grid-template-columns: 1fr;
    }

    .projects-highlight__visual {
        min-height: 280px;
    }
}
