* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: #0A1F44;
    background: #FAFAFA;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

a {
    color: inherit;
}

img {
    display: block;
    height: auto;
    max-width: 100%;
}

.site-header {
    background: #0A1F44;
    padding: 26px 8%;
}

.site-nav {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px;
}

.logo {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    text-decoration: none;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: white;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.72;
}

.page-hero {
    align-items: flex-end;
    background-position: center;
    background-size: cover;
    color: white;
    display: flex;
    min-height: 430px;
    padding: 130px 8% 80px;
    position: relative;
}

.page-hero::before {
    background: linear-gradient(to bottom, rgba(10,31,68,.45), rgba(10,31,68,.72));
    content: "";
    inset: 0;
    position: absolute;
}

.blog-home-hero {
    background-image: url("../images/galery2.jpg");
}

.saona-hero {
    background-image: url("../images/galery2.jpg");
}

.season-hero {
    background-image: url("../images/galery1.jpg");
}

.family-hero {
    background-image: url("../images/20260304_151016.jpg");
}

.sargassum-hero {
    background-image: url("../images/galery3.jpg");
}

.page-hero-inner {
    max-width: 880px;
    position: relative;
    width: 100%;
    z-index: 1;
}

.eyebrow {
    color: #F5D8AA;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.page-hero h1 {
    font-size: 54px;
    line-height: 1.08;
    margin-bottom: 18px;
}

.page-hero p {
    color: #F3F4F6;
    font-size: 20px;
    font-weight: 300;
    max-width: 760px;
}

.container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 90px 8%;
    width: 100%;
}

.section-intro {
    color: #4B5563;
    font-size: 17px;
    margin: -12px 0 36px;
    max-width: 720px;
}

.blog-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4, 1fr);
}

.post-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.post-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.post-card-image {
    height: 235px;
    overflow: hidden;
}

.post-card-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    width: 100%;
}

.post-card:hover img {
    transform: scale(1.05);
}

.post-card-content {
    padding: 26px;
}

.post-meta {
    color: #C19A6B;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.post-card h2,
.post-card h3 {
    font-size: 25px;
    line-height: 1.25;
    margin-bottom: 12px;
}

.post-card p {
    color: #6B7280;
    font-size: 15px;
    margin-bottom: 18px;
}

.text-link {
    color: #0A1F44;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.text-link:hover {
    border-color: #0A1F44;
}

.article-shell {
    display: grid;
    gap: 56px;
    grid-template-columns: minmax(0, 760px) minmax(240px, 320px);
    padding-top: 80px;
}

.article-body {
    color: #283B5F;
    font-size: 18px;
}

.article-body h2 {
    color: #0A1F44;
    font-size: 34px;
    line-height: 1.2;
    margin: 44px 0 16px;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul {
    margin: 0 0 26px 22px;
}

.article-body li {
    margin-bottom: 10px;
}

.article-summary {
    color: #4B5563;
    font-size: 20px;
    margin-bottom: 28px;
}

.article-sidebar {
    align-self: start;
    background: #F5F0E8;
    border-radius: 8px;
    padding: 28px;
}

.article-sidebar h2 {
    font-size: 24px;
    margin-bottom: 14px;
}

.article-sidebar p {
    color: #4B5563;
    margin-bottom: 22px;
}

.btn {
    border-radius: 4px;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    padding: 15px 28px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #0A1F44;
    border: 1px solid #0A1F44;
    color: white;
}

.btn-primary:hover {
    background: #153366;
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid #0A1F44;
    color: #0A1F44;
}

.btn-secondary:hover {
    background: #0A1F44;
    color: white;
}

.article-footer {
    border-top: 1px solid #E5E7EB;
    margin-top: 54px;
    padding-top: 28px;
}

.article-footer a {
    margin-right: 14px;
    margin-top: 12px;
}

.related-section {
    background: white;
}

.related-section .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 840px;
}

footer {
    background: #051024;
    color: #9CA3AF;
    font-size: 14px;
    padding: 54px 8%;
    text-align: center;
}

footer span {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    letter-spacing: 2px;
}

@media (max-width: 980px) {
    .blog-grid,
    .article-shell {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        max-width: 560px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .site-header {
        padding: 22px 5%;
    }

    .page-hero {
        min-height: 380px;
        padding: 105px 24px 58px;
    }

    .page-hero-inner {
        max-width: calc(100vw - 48px);
        width: calc(100vw - 48px);
    }

    .page-hero h1 {
        display: block;
        font-size: 28px;
        overflow-wrap: break-word;
        white-space: normal;
        width: calc(100vw - 48px);
    }

    .page-hero p,
    .article-summary,
    .section-intro {
        display: block;
        font-size: 16px;
        max-width: 100%;
        overflow-wrap: break-word;
        white-space: normal;
        width: calc(100vw - 48px);
    }

    .container {
        max-width: 100vw;
        padding: 64px 24px;
    }

    .blog-grid,
    .post-card,
    .article-body,
    .article-sidebar {
        max-width: calc(100vw - 48px);
        width: calc(100vw - 48px);
    }

    .article-body {
        font-size: 16px;
    }

    .article-body h2 {
        font-size: 28px;
    }

    .btn {
        text-align: center;
        width: 100%;
    }

    .article-footer a {
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .page-hero h1,
    .page-hero p,
    .section-intro,
    .article-summary,
    .article-body p,
    .article-body li {
        max-width: 300px;
    }
}

@media (max-width: 600px) {
    .page-hero-inner {
        max-width: calc(100vw - 48px);
        width: 300px;
    }

    .page-hero h1,
    .page-hero p,
    .article-summary,
    .article-body p,
    .article-body li {
        max-width: 100%;
        width: 100%;
    }

    .section-intro {
        max-width: calc(100vw - 48px);
        width: 300px;
    }

    .blog-grid,
    .post-card,
    .article-body,
    .article-sidebar {
        max-width: calc(100vw - 48px);
        width: 342px;
    }
}
