/**
 * about-split.css
 * Ana sayfa Hakkımızda bölümü split tasarım bileşeni.
 */
.about-split {
    position: relative;
}

.about-split__media {
    position: relative;
    padding: 24px 0;
}

.about-media__main {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 1.25rem 2.5rem rgba(15, 23, 42, 0.12);
}

.about-media__main img {
    width: 100%;
    display: block;
    object-fit: cover;
    min-height: 320px;
}

.about-media__float {
    position: absolute;
    right: 8%;
    bottom: -10%;
    width: 52%;
    max-width: 280px;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    padding: 8px;
    box-shadow: 0 1rem 2rem rgba(15, 23, 42, 0.2);
    clip-path: polygon(8% 0%, 92% 0%, 100% 8%, 100% 92%, 92% 100%, 8% 100%, 0% 92%, 0% 8%);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-media__float img {
    width: 100%;
    display: block;
    border-radius: 16px;
    object-fit: cover;
    min-height: 160px;
}

.about-media__float:hover {
    transform: scale(1.02);
    box-shadow: 0 1.5rem 2.5rem rgba(15, 23, 42, 0.28);
}

.about-dots {
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, rgba(15, 23, 42, 0.18) 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.6;
    z-index: 0;
}

.about-dots__left {
    left: -24px;
    top: 18%;
}

.about-dots__float {
    right: 12%;
    bottom: 5%;
}

.about-split__content {
    position: relative;
    z-index: 1;
}

.about-split__eyebrow {
    display: inline-block;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 10px;
    letter-spacing: 0.03em;
}

.about-split__title {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text);
}

.about-split__lead {
    font-size: 1.05rem;
    color: var(--muted-text);
    margin-bottom: 12px;
}

.about-split__text {
    color: var(--text);
    opacity: 0.85;
    margin-bottom: 24px;
}

.about-split__btn {
    border-radius: 14px;
    padding: 12px 22px;
}

@media (max-width: 991px) {
    .about-media__float {
        right: 6%;
        bottom: -8%;
        width: 60%;
    }
}

@media (max-width: 767px) {
    .about-media__float {
        position: relative;
        right: auto;
        bottom: auto;
        width: 70%;
        margin: 16px auto 0;
    }
    .about-dots__float {
        right: 0;
        bottom: 0;
    }
}
