@import url('../global-typography.css');

:root {
    --teal: #0A919B;
    --black: #0d0d0d;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: var(--white);
    color: var(--black);
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
}

.blog-page {
    padding-top: 120px;
}

.blog-article {
    width: min(100%, 1040px);
    margin: 0 auto;
    padding: 80px 8% 90px;
}

.eyebrow {
    color: var(--teal);
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.blog-header h1 {
    font-size: clamp(42px, 7vw, 88px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 0.96;
    max-width: 900px;
}

.blog-header p {
    color: #666;
    font-size: 20px;
    line-height: 1.55;
    max-width: 720px;
    margin-top: 28px;
}

.blog-header .article-meta {
    color: var(--teal);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    display: block;
    margin: 56px 0;
    object-fit: cover;
}

.blog-content {
    max-width: 760px;
}

.blog-content p {
    color: #444;
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 26px;
}

.blog-content h2 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    margin: 48px 0 18px;
}

.other-blogs {
    background: var(--black);
    color: var(--white);
    padding: 90px 8%;
}

.other-header,
.other-grid {
    width: min(100%, 1040px);
    margin: 0 auto;
}

.other-header h2 {
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1;
}

.other-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 44px;
}

.other-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: var(--white);
    display: grid;
    gap: 22px;
    padding: 18px;
    text-decoration: none;
    transition: 0.3s ease;
}

.other-card:hover {
    border-color: var(--teal);
    transform: translateY(-6px);
}

.other-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    object-fit: cover;
    height:300px;
}

.other-card span {
    color: var(--teal);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.other-card h3 {
    font-size: 24px;
    line-height: 1.2;
    margin-top: 12px;
}

@media (max-width: 760px) {
    .blog-page {
        padding-top: 96px;
    }

    .blog-article {
        padding: 60px 5% 70px;
    }

    .blog-header h1 {
        letter-spacing: 0;
    }

    .blog-header p,
    .blog-content p {
        font-size: 16px;
    }

    .blog-image {
        border-radius: 12px;
        margin: 38px 0;
        height:300px;
    }

    .other-blogs {
        padding: 70px 5%;
    }

    .other-grid {
        grid-template-columns: 1fr;
    }
}
