﻿/* About */
.about {
    position: relative;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    background-color: var(--clr-bg);
}

.gold-overlay {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--clr-gold);
    z-index: 1;
}

.about-content {
    position: relative;
    padding-left: 2rem;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 1px; height: 100%;
    background: linear-gradient(to bottom, transparent, var(--clr-gold), transparent);
}

.about-content p {
    color: var(--clr-text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-content strong {
    color: var(--clr-white);
    font-weight: 700;
}

