/* Blog Page Specific Styles */

.px-5vw {
    padding-left: 5vw !important;
    padding-right: 5vw !important;
}

.section-padding {
    padding: 100px 0;
}

/* Hero Section */
.blog-hero {
    height: 100vh;
    background: linear-gradient(rgba(0,31,46,0.6), rgba(0,31,46,0.6)), url('../assets/blog-title-bg.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
    z-index: 2;
}

.blog-hero-content .sub-hl {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}

.blog-hero-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    font-weight: 300;
}

.btn-outline-white {
    padding: 15px 40px;
    border: 1px solid #fff;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: #fff;
    color: #001f2e;
}


/* Blog Card Alt */
.blog-card-alt {
    transition: transform 0.3s ease;
}

.card-link-wrapper {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-card-img {
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

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

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

.blog-card-meta {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.blog-card-meta .sep {
    margin: 0 5px;
    color: #ddd;
}

.blog-card-title {
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 400;
    font-family: 'Manrope', sans-serif;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.blog-card-alt:hover .blog-card-title {
    color: var(--primary);
}

/* Load More */
.btn-load-more {
    background: #001f2e;
    color: #fff;
    padding: 15px 50px;
    border-radius: 50px;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.btn-dark-pill {
    background: #1a1a1a;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-dark-pill:hover {
    background: var(--primary);
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .blog-hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .blog-hero-content h1 {
        font-size: 2.5rem;
    }
}
