﻿/* Hakkımızda içerik — hero: kurumsal.css */

/* Story: sol başlık + sağ metin */
.about-detail-section {
    padding: 4.5rem 0 3.5rem;
    background: var(--white);
}

.about-story {
    display: grid;
    gap: 2rem 4rem;
    align-items: start;
}

@media (min-width: 992px) {
    .about-story {
        grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.4fr);
    }
}

.about-story-aside {
    position: relative;
}

@media (min-width: 992px) {
    .about-story-aside {
        position: sticky;
        top: 7rem;
        padding-right: 1rem;
        border-right: 1px solid rgba(14, 116, 144, 0.15);
    }
}

.about-story-title {
    margin-bottom: 0;
    text-align: left;
    font-size: clamp(1.65rem, 2.4vw, 2.15rem);
    line-height: 1.25;
}

.about-focus-block {
    margin-top: 2.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(14, 116, 144, 0.18);
}

.about-focus-title {
    margin: 0 0 1.1rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.35;
}

.about-focus-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.about-focus-list li {
    position: relative;
    margin: 0;
    padding: 0.8rem 0.9rem 0.8rem 1.9rem;
    background: #F8FAFC;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.45;
    font-weight: 500;
}

.about-focus-list li::before {
    content: '';
    position: absolute;
    left: 0.8rem;
    top: 1.15rem;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: var(--primary);
}

.about-story-copy {
    min-width: 0;
}

.about-intro-body.rich-content > p:first-of-type {
    color: #334155;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.75;
    margin-bottom: 1.75rem;
}

.about-intro-body.rich-content p {
    color: #475569;
    font-size: 1.0625rem;
    line-height: 1.85;
    margin-bottom: 1.35rem;
}

.about-intro-body.rich-content ul,
.about-intro-body.rich-content ol {
    color: #475569;
    font-size: 1.0625rem;
    line-height: 1.85;
    margin: 0 0 1.5rem;
    padding: 1.25rem 1.25rem 1.25rem 2.25rem;
    background: #F8FAFC;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.about-intro-body.rich-content li + li {
    margin-top: 0.35rem;
}

.about-intro-body.rich-content h2,
.about-intro-body.rich-content h3,
.about-intro-body.rich-content h4 {
    color: var(--dark);
    margin-top: 2rem;
    margin-bottom: 0.85rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.about-intro-body.rich-content table {
    width: 100%;
    margin-bottom: 1.25rem;
    border-collapse: collapse;
}

.about-intro-body.rich-content table td,
.about-intro-body.rich-content table th {
    border: 1px solid var(--border);
    padding: 0.5rem 0.75rem;
}

.about-intro-paragraph {
    color: #475569;
    font-size: 1.0625rem;
    line-height: 1.85;
    margin-bottom: 1.35rem;
}

.about-intro-paragraph:last-child {
    margin-bottom: 0;
}

/* Highlights band */
.about-highlights-section {
    padding: 1rem 0 4.5rem;
    background: var(--white);
}

.about-detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 0;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.about-detail-item:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(14, 116, 144, 0.3);
}

.about-detail-item--tile {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    height: 100%;
}

.about-detail-item--tile i {
    margin-bottom: 0.25rem;
}

.about-detail-item i {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.about-detail-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.about-detail-item p {
    color: var(--gray);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

/* Values Cards */
.values-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
}

.value-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.value-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: rgba(14, 116, 144, 0.2);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: white;
    box-shadow: 0 8px 20px rgba(14, 116, 144, 0.3);
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
}

.value-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.value-card p {
    color: var(--gray);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 767px) {
    .page-hero {
        height: 220px;
    }

    .page-hero-content h1 {
        font-size: 1.75rem;
    }

    .about-detail-section {
        padding: 3rem 0 2rem;
    }

    .about-highlights-section {
        padding-bottom: 3rem;
    }
}
