/* ============================================
   About Intro — Marquee + Two Column
============================================ */

.dm-about-intro {
    background: var(--dm-white);
    color: var(--dm-dark);
    overflow: hidden;
}

/* ─── Marquee: Dev kayan başlık ─────────── */
.dm-about-intro__marquee {
    background: var(--dm-white);
    padding: clamp(40px, 8vh, 90px) 0;
    overflow: hidden;
    position: relative;
}

.dm-about-intro__marquee::before,
.dm-about-intro__marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(40px, 6vw, 120px);
    z-index: 2;
    pointer-events: none;
}
.dm-about-intro__marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--dm-white) 0%, transparent 100%);
}
.dm-about-intro__marquee::after {
    right: 0;
    background: linear-gradient(-90deg, var(--dm-white) 0%, transparent 100%);
}

.dm-about-intro__marquee-track {
    display: flex;
    align-items: center;
    gap: clamp(30px, 4vw, 60px);
    white-space: nowrap;
    width: max-content;
    animation: dm-about-marquee 45s linear infinite;
}

.dm-about-intro__marquee:hover .dm-about-intro__marquee-track {
    animation-play-state: paused;
}

.dm-about-intro__marquee-item {
    font-family: var(--dm-font-heading);
    font-size: clamp(64px, 10vw, 160px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--dm-dark);
    text-transform: uppercase;
}

.dm-about-intro__marquee-sep {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(20px, 3vw, 40px);
    height: clamp(20px, 3vw, 40px);
    color: var(--dm-accent);
    flex-shrink: 0;
}

.dm-about-intro__marquee-sep:nth-of-type(4n+2) { color: var(--dm-pink); }
.dm-about-intro__marquee-sep:nth-of-type(4n+4) { color: var(--dm-primary); }

.dm-about-intro__marquee-sep svg {
    width: 100%;
    height: 100%;
}

@keyframes dm-about-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ─── İki kolon: görsel + metin ─────────── */
.dm-about-intro__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--dm-container-px) clamp(60px, 9vh, 120px);
}

.dm-about-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 4vw, 60px);
    align-items: start;
}

.dm-about-intro__col--left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dm-about-intro__col--right {
    position: relative;
}

/* Görsel wrapperları */
.dm-about-intro__image-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    overflow: hidden;
    background: var(--dm-light);
}

.dm-about-intro__image-wrap--tall {
    aspect-ratio: 4 / 5;
    min-height: 500px;
}

.dm-about-intro__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dm-about-intro__image-placeholder {
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(
            -45deg,
            rgba(var(--dm-primary-rgb), 0.12) 0 20px,
            transparent 20px 40px
        ),
        var(--dm-light);
}

/* Social media ikonları */
.dm-about-intro__social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 4px 0;
}

.dm-about-intro__social-link {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--dm-border);
    border-radius: 50%;
    color: var(--dm-dark);
    transition: all 0.25s ease;
    text-decoration: none;
}

.dm-about-intro__social-link:hover {
    background: var(--dm-dark);
    color: var(--dm-primary);
    border-color: var(--dm-dark);
    transform: translateY(-2px);
}

.dm-about-intro__social-link svg {
    width: 16px;
    height: 16px;
}

/* Metin */
.dm-about-intro__text {
    font-family: var(--dm-font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--dm-text);
    margin: 0;
    max-width: 480px;
}

/* Responsive */
@media (max-width: 991px) {
    .dm-about-intro__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .dm-about-intro__col--left {
        max-width: 600px;
    }
    .dm-about-intro__image-wrap--tall {
        aspect-ratio: 16 / 10;
        min-height: 0;
    }
    .dm-about-intro__image-wrap {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 600px) {
    .dm-about-intro__marquee {
        padding: clamp(24px, 4vh, 40px) 0;
    }
    .dm-about-intro__container {
        padding-bottom: clamp(40px, 6vh, 70px);
    }
}
