.about-page {
    width: 100%;
    padding-top: 64px;
}

.about-page__section {
    width: 100%;
    padding: 80px 0;
    box-sizing: border-box;
}

.about-page__inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    box-sizing: border-box;
}


/* header */

.about-page__header {
    margin-bottom: 64px;
    text-align: center;
}

.about-page__title {
    margin: 0 0 16px;
    font-size: 60px;
    line-height: 1;
    font-weight: 400;
    color: #111827;
}

.about-page__subtitle {
    margin: 0;
    font-size: 20px;
    line-height: 28px;
    color: #4b5563;
}


/* introduction */

.about-page__intro {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 48px;
    margin-bottom: 80px;
}

.about-page__intro-image {
    position: relative;
    height: 384px;
}

.about-page__intro-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.about-page__intro-title {
    margin: 0 0 24px;
    font-size: 36px;
    line-height: 40px;
    font-weight: 400;
    color: #111827;
}

.about-page__intro-text {
    margin: 0 0 16px;
    font-size: 18px;
    line-height: 28px;
    color: #4b5563;
}

.about-page__intro-text:last-child {
    margin-bottom: 0;
}


/* common section header */

.about-page__values,
.about-page__team {
    margin-bottom: 80px;
}

.about-page__section-header {
    margin-bottom: 48px;
    text-align: center;
}

.about-page__section-title {
    margin: 0 0 16px;
    font-size: 36px;
    line-height: 40px;
    font-weight: 400;
    color: #111827;
}

.about-page__section-subtitle {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    color: #4b5563;
}


/* values */

.about-page__value-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
}

.about-page__value-card {
    padding: 32px 24px 24px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    box-sizing: border-box;
    text-align: center;
    transition: box-shadow 0.15s ease;
}

.about-page__value-card:hover {
    box-shadow:
        0 10px 15px -3px rgb(0 0 0 / 0.1),
        0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.about-page__value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #000000;
    color: #ffffff;
}

.about-page__value-icon svg {
    width: 32px;
    height: 32px;
}

.about-page__value-title {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    color: #111827;
}

.about-page__value-description {
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    color: #4b5563;
}


/* team */

.about-page__team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
}

.about-page__team-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    transition: box-shadow 0.15s ease;
}

.about-page__team-card:hover {
    box-shadow:
        0 10px 15px -3px rgb(0 0 0 / 0.1),
        0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.about-page__team-image {
    position: relative;
    height: 256px;
}

.about-page__team-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-page__team-content {
    padding: 24px;
    text-align: center;
    box-sizing: border-box;
}

.about-page__team-name {
    margin: 0 0 4px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    color: #111827;
}

.about-page__team-position {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 24px;
    color: #4b5563;
}

.about-page__team-experience {
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    color: #6b7280;
}


/* awards */

.about-page__awards {
    padding: 48px;
    border-radius: 16px;
    background: #f9fafb;
    box-sizing: border-box;
}

.about-page__award-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
}

.about-page__award-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px;
    border-radius: 8px;
    background: #ffffff;
    box-sizing: border-box;
    transition: box-shadow 0.15s ease;
}

.about-page__award-item:hover {
    box-shadow:
        0 4px 6px -1px rgb(0 0 0 / 0.1),
        0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.about-page__award-main {
    display: flex;
    align-items: center;
}

.about-page__award-icon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-right: 16px;
    border-radius: 50%;
    background: #000000;
    color: #ffffff;
}

.about-page__award-icon svg {
    width: 24px;
    height: 24px;
}

.about-page__award-title {
    margin: 0;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #111827;
}

.about-page__award-year {
    flex: 0 0 auto;
    font-size: 16px;
    line-height: 24px;
    color: #6b7280;
}


/* tablet */

@media (max-width: 1023px) {

    .about-page__inner {
        padding-left: 24px;
        padding-right: 24px;
    }

    .about-page__value-grid,
    .about-page__team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* mobile */

@media (max-width: 767px) {

    .about-page__inner {
        padding-left: 16px;
        padding-right: 16px;
    }

    .about-page__title {
        font-size: 36px;
        line-height: 40px;
    }

    .about-page__intro {
        grid-template-columns: 1fr;
    }

    .about-page__intro-title,
    .about-page__section-title {
        font-size: 30px;
        line-height: 36px;
    }

    .about-page__value-grid,
    .about-page__team-grid {
        grid-template-columns: 1fr;
    }

    .about-page__awards {
        padding: 32px;
    }

}