.about-card {
    display: grid;
    grid-template-columns: 1.02fr 1fr;
    gap: 28px;
    align-items: center;
    max-width: 100%;
    margin: 32px auto 48px;
    /* height: auto; */
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(145deg, #ffffff 0%, #eff6ff 100%);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.about-visual {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    min-height: 360px;
    background: linear-gradient(135deg, #111827, #1f2937);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.about-visual img {
    width: 100%;
    height: 400px;
    justify-self: center;
    align-items: center;
    object-fit: contain;
    display: block;
    border-radius: 24px;
    transform: scale(1.02);
    transition: transform 0.35s ease;
}

.about-visual:hover img {
    transform: scale(1.05);
}

.comment-bubble {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(241, 54, 37, 0.08);
    color: #f13625;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(241, 54, 37, 0.16);
    border: 1px solid rgba(241, 54, 37, 0.25);
    opacity: 0;
    transform: translateY(10px) scale(0.92);
    animation: bubblePop 5s ease-in-out infinite;
    z-index: 2;
}

.bubble-one {
    top: 14px;
    left: 14px;
    animation-delay: 0s;
}

.bubble-two {
    top: 58px;
    right: 14px;
    animation-delay: 1.2s;
}

.bubble-three {
    bottom: 16px;
    left: 18px;
    animation-delay: 2.4s;
}

@keyframes bubblePop {
    0%, 100% {
        opacity: 0;
        transform: translateY(10px) scale(0.92);
    }
    10%, 28% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    35%, 52% {
        opacity: 0.85;
        transform: translateY(-2px) scale(1.02);
    }
    60% {
        opacity: 0;
        transform: translateY(-8px) scale(0.96);
    }
}

.about-badge {
    position: absolute;
    left: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #111827;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
}

.about-copy {
    padding: 8px 6px;
}

.about-label {
    display: inline-block;
    color: #f13625;
    font-size: 0.82rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 8px;
}

.about-copy h2 {
    margin: 0 0 14px;
    color: #111827;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.15;
}

.about-copy p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 1rem;
}

.about-points {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.about-points li {
    position: relative;
    padding-left: 18px;
    color: #1f2937;
    font-weight: 600;
}

.about-points li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f13625;
}

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

    .about-visual {
        min-height: 280px;
    }
}

@media (max-width: 640px) {
    .about-card {
        padding: 14px;
        border-radius: 18px;
        margin: 18px 10px 30px;
    }

    .about-copy p {
        font-size: 0.95rem;
    }

    .about-visual {
        min-height: 220px;
    }
}