/* ========== About Section Container ========== */
.about-section {
    padding: var(--space-xl) var(--space-md);
    text-align: center;
    background-color: var(--bg-light);
}

/* ========== Section Title ========== */
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: var(--space-lg);
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: var(--space-md) auto 0;
}

/* ========== About Text ========== */
.about-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

/* ========== Layout Grid ========== */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

/* ========== Left Column ========== */
.left-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.left-column img {
    width: 100%;
    aspect-ratio: 2.5 / 2;
    object-fit: cover;
    background: white;
    padding: 12px 12px 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.left-column img::after {
    content: 'Gerrard Heritage';
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 100%;
    text-align: center;
    color: var(--text-medium);
    font-size: 0.8rem;
}

/* ========== Right Column ========== */
.right-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/* ========== Right Column Top Text ========== */
.top-right {
    margin-bottom: var(--space-md);
    font-size: 1rem;
    color: var(--text-medium);
}

/* ========== Media Queries: Tablets (≤1024px) ========== */
@media (max-width: 1024px) {
    .about-section {
        padding: var(--space-lg) var(--space-sm);
    }

    .about-layout {
        grid-template-columns: 1fr;
        max-width: 90%;
    }

    .left-column img {
        aspect-ratio: auto;
        max-height: 300px;
        object-fit: cover;
    }

    .section-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }
}

/* ========== Media Queries: Phones & Small Tablets (≤768px) ========== */
@media (max-width: 768px) {
    .about-section {
        padding: var(--space-md) var(--space-xs);
    }

    .about-text {
        font-size: 1rem;
    }

    .top-right {
        font-size: 0.9rem;
    }
}

/* ========== Media Queries: Phones (≤480px) ========== */
@media (max-width: 480px) {
    .about-section {
        padding: var(--space-sm) var(--space-xs);
    }

    .section-title {
        font-size: 1.5rem;
    }

    .about-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .top-right {
        font-size: 0.85rem;
    }
}
