/* ========================================
   JaktLicens – About Section CSS
   ======================================== */

.wp-block-jaktlicens-about-section,
.about {
    padding: 100px 0;
    background: var(--bg-light, #f5f7f5);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text .section-label {
    font-size: 0.8rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--primary-dark);
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Features */
.about-features {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--accent-gold);
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 4px;
}

.feature-text h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #666;
}

/* Visual side */
.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.about-image {
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
    border-radius: 200px 200px 0 0;
    position: relative;
    overflow: hidden;
}

.about-image svg {
    width: 100%;
    height: 100%;
    opacity: 0.1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.about-badge {
    position: absolute;
    bottom: 40px;
    right: 0;
    background: var(--bg-white, white);
    padding: 20px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.about-badge .number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-gold);
    line-height: 1;
}

.about-badge .text {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }

    .about-image {
        width: 250px;
        height: 350px;
    }

    .about-badge {
        bottom: 20px;
        right: -10px;
        padding: 15px 20px;
    }

    .about-badge .number {
        font-size: 2rem;
    }
}
