﻿/* About page specific styles */
.about-hero {
    margin-top: 90px;
    padding: 120px 0 90px;
    background:
        linear-gradient(rgba(3, 21, 37, 0.72), rgba(3, 21, 37, 0.72)),
        url('../images/factory_bg.png') center / cover no-repeat;
    color: #ffffff;
}

.about-hero h1 {
    font-size: 48px;
    line-height: 1.05;
    text-transform: uppercase;
    max-width: 920px;
    overflow-wrap: anywhere;
}

.about-hero p {
    margin-top: 24px;
    max-width: 700px;
    font-size: 18.4px;
    color: rgba(255,255,255,0.88);
}

.about-split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 52px;
    align-items: center;
    margin-bottom: 90px;
}

.about-split-image {
    border-radius: 18px;
    overflow: hidden;
    background: #eef2f5;
}

.about-split-image img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.about-cap-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 90px;
}

.about-cap-card {
    border: none;
    border-radius: 16px;
    padding: 26px 22px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(6, 35, 60, 0.08);
}

.about-cap-card h3 {
    font-size: 18.4px;
    margin-bottom: 10px;
}

.about-cap-card p {
    color: #5e6a75;
    font-size: 15.68px;
}

.about-lab {
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 90px;
    position: relative;
}

.about-lab img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.about-lab-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 28, 46, 0.2), rgba(6, 28, 46, 0.66));
    display: flex;
    align-items: end;
    padding: 40px;
    color: #fff;
    font-size: 19.2px;
    font-family: 'Syne', sans-serif;
    letter-spacing: 1px;
}

.about-timeline {
    margin-bottom: 40px;
    display: grid;
    gap: 22px;
}

.about-timeline-item {
    border-left: 3px solid #007bb5;
    padding: 10px 0 10px 18px;
}

.about-timeline-item h4 {
    font-size: 18.4px;
    margin-bottom: 6px;
}

.about-timeline-item p {
    color: #5e6a75;
}

@media (max-width: 992px) {
    .about-split {
        grid-template-columns: 1fr;
    }
    .about-cap-grid {
        grid-template-columns: 1fr;
    }
    .about-lab img {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 32px;
    }
}


