/* General Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    background-color: #e9ecef; /* Gris claro */
    color: #0a2c40; /* Azul oscuro */
    padding-top: 90px; /* Add padding to body to prevent content from being hidden by fixed header */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #ffffff; /* Blanco */
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: fixed; /* Make header fixed */
    top: 0; /* Position at the top */
    width: 100%; /* Full width */
    z-index: 1000; /* Ensure it stays on top of other content */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.logo img {
    height: 50px;
    margin-right: 15px;
}

.logo h1 {
    font-size: 2.2rem; /* Increased font size */
    color: #0a2c40; /* Keep original color */
    margin: 0;
    font-weight: 700; /* Make it bolder */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); /* Subtle text shadow */
}

.main-nav a {
    margin-left: 25px;
    color: #0a2c40;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #2bd6c5; /* Verde agua */
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 8px;
    padding: 10px 0;
}

.dropdown-content a {
    color: #0a2c40;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    margin: 0;
}

.dropdown-content a:hover {background-color: #f1f1f1;}

.dropdown-content .disabled-link {
    color: #aaa;
    pointer-events: none; /* Makes it non-clickable */
    cursor: default;
}

/* About Page Styles */
.about-hero {
    background-color: #0a2c40;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.about-hero h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.about-hero .subtitle {
    font-size: 1.3rem;
    color: #e0e0e0;
}

.about-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.about-text p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-details {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.about-details h3 {
    font-size: 1.5rem;
    color: #0a2c40;
    margin-bottom: 15px;
}

.about-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-details li {
    margin-bottom: 10px;
}

.services-section {
    padding: 60px 0;
    background-color: #e9ecef;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    color: #003f63;
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 1.2rem;
    color: #0a2c40;
    margin: 0;
}

/* Blog Page - Modern Redesign */

/* Blog Index */
.featured-post {
    margin-bottom: 40px;
}

.featured-post a {
    display: block;
    background-color: #0a2c40;
    color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.featured-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content {
    padding: 40px;
}

.featured-content h2 {
    font-size: 2.5rem;
    margin: 0 0 15px 0;
}

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

.post-card a {
    text-decoration: none;
    color: inherit;
}

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

.post-tags span {
    background-color: #e9ecef;
    color: #555;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    margin-right: 5px;
}

.post-card h3 {
    font-size: 1.5rem;
    margin: 15px 0;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #777;
}

/* Blog Post Page */
.blog-post {
    background-color: #fff;
}

.post-header {
    padding: 100px 20px;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    position: relative;
}

.post-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.6);
}

.post-header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.post-header h1 {
    font-size: 3.5rem;
    margin: 20px 0;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
}

.post-body {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 50px;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.post-body-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.author-box, .share-box {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.author-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.share-buttons a {
    display: block;
    padding: 12px;
    margin: 10px 0;
    text-align: center;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.share-btn-twitter { background-color: #1DA1F2; }
/* Contact Page Styles */
.contact-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: 2.8rem;
}

.contact-body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    background-color: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

.submit-btn {
    display: inline-block;
    background-color: #003f63;
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #0a2c40;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Responsive Contact Page */
@media (max-width: 992px) {
    .contact-body {
        grid-template-columns: 1fr;
    }
}

.share-btn-linkedin { background-color: #0077B5; }

/* Responsive Blog */
@media (max-width: 992px) {
    .featured-post a { grid-template-columns: 1fr; }
    .posts-grid { grid-template-columns: 1fr; }
    .post-body { grid-template-columns: 1fr; }
}

.team-section {
    padding: 60px 0;
    background-color: #ffffff;
    text-align: center;
}

/* Responsive adjustments for About Page */
@media (max-width: 992px) {
    .about-content-grid {
        grid-template-columns: 1fr;
    }
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Hero Section */
.hero {
    background: url('https://via.placeholder.com/1500x500/0a2c40/ffffff?text=Your+Hero+Image') no-repeat center center/cover; /* Placeholder image */
    position: relative;
    color: #ffffff; /* Blanco */
    padding: 100px 20px; /* Increased padding */
    text-align: center;
    overflow: hidden; /* Ensures pseudo-element stays within bounds */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10, 44, 64, 0.8), rgba(21, 71, 100, 0.7)); /* Darker gradient overlay */
    z-index: 1;
}

.hero h2,
.hero p {
    position: relative;
    z-index: 2; /* Bring text above the overlay */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add text shadow for readability */
}

.hero h2 {
    font-size: 3.5rem; /* Larger font size */
    margin-bottom: 15px;
    font-weight: 700;
}

.hero p {
    font-size: 1.5rem; /* Larger font size */
    max-width: 800px; /* Wider text area */
    margin: 0 auto;
}

/* Search Container */
.search-container {
    padding: 20px 0;
    background-color: #e9ecef;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

#search-input, .filter-controls select {
    padding: 15px;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#search-input {
    width: 100%;
    max-width: 400px;
}

.filter-controls {
    display: flex;
    gap: 15px;
}

.filter-controls select {
    background-color: #fff;
    cursor: pointer;
}

/* Job Board */
.job-board {
    padding: 50px 0;
}

.job-counter-container {
    text-align: center;
    margin-bottom: 30px;
}

.job-counter {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0a2c40;
}

.job-listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.job-card {
    background-color: #ffffff; /* Blanco */
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease;
    opacity: 0; /* Initially hidden for animation */
    transform: translateY(20px);
    position: relative; /* Added for positioning share button */
}

.job-card-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.job-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.job-card h3 {
    font-size: 1.5rem;
    color: #0a2c40; /* Púrpura */
    margin-top: 0;
    margin-bottom: 10px;
}

.job-card .company {
    font-weight: 600;
    color: #0a2c40; /* Azul oscuro */
    margin-bottom: 10px;
    display: block;
}

.job-card .location {
    color: #555;
    margin-bottom: 15px;
}

.job-card .description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.apply-button {
    display: inline-block;
    background-color: #003f63; /* Verde agua */
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.apply-button:hover {
    background-color: #0a2c40;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.share-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #003f63; /* Same as apply button */
    color: #ffffff; /* Same as apply button */
    width: 35px; /* Smaller size */
    height: 35px; /* Smaller size */
    border-radius: 50%; /* Circular */
    border: none;
    font-size: 1.2rem; /* Adjust font size for the arrow */
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
    opacity: 0; /* Initially hidden */
}

.job-card:hover .share-button {
    opacity: 1;
    transform: scale(1.1); /* Pop out slightly on hover */
}

.share-button:hover {
    background-color: #0a2c40; /* Same as apply button hover */
    color: #ffffff;
    transform: translateY(-3px) scale(1.02) rotate(15deg); /* Apply button animation + subtle rotation */
}

/* Fallback Message */
.fallback {
    text-align: center;
    padding: 50px;
    font-size: 1.2rem;
    color: #666;
}

.load-more-container {
    text-align: center;
    margin-top: 40px;
}

.load-more-button {
    background-color: #0a2c40;
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.load-more-button:hover {
    background-color: #003f63;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.faq-section {
    padding: 50px 0;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: #0a2c40;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
}

.faq-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden; /* Para ocultar el contenido cuando está colapsado */
}

.faq-question {
    background-color: #e0e0e0;
    color: #0a2c40;
    padding: 15px 20px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: #d0d0d0;
}

.faq-question::after {
    content: '\002B'; /* Unicode plus sign */
    font-size: 1.5rem;
    color: #0a2c40;
    font-weight: bold;
    margin-left: 10px;
}

.faq-question.active::after {
    content: '\2212'; /* Unicode minus sign */
}

.faq-answer {
    padding: 0 20px;
    background-color: #f8f9fa;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 15px;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 50px 0;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: #0a2c40;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
}

.faq-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden; /* Para ocultar el contenido cuando está colapsado */
}

.faq-question {
    background-color: #e0e0e0;
    color: #0a2c40;
    padding: 15px 20px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: #d0d0d0;
}

.faq-question::after {
    content: '\002B'; /* Unicode plus sign */
    font-size: 1.5rem;
    color: #0a2c40;
    font-weight: bold;
    margin-left: 10px;
}

.faq-question.active::after {
    content: '\2212'; /* Unicode minus sign */
}

.faq-answer {
    padding: 0 20px;
    background-color: #f8f9fa;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 15px;
    margin: 0;
}

/* Ask Us Section */
.ask-us-section {
    padding: 50px 0;
    text-align: center;
    background-color: #e9ecef;
}

.ask-us-section p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: #555;
}

.ask-us-button {
    display: inline-block;
    background-color: #003f63;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.ask-us-button:hover {
    background-color: #0a2c40;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Back to Top Button */
.back-to-top {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed position */
    bottom: 30px; /* Place at the bottom */
    right: 30px; /* Place at the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #0a2c40; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.back-to-top:hover {
    background-color: #003f63; /* Darker background on hover */
    transform: translateY(-3px);
}

/* Blog Section */
.blog-section {
    padding: 50px 0;
}

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

.blog-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h5 {
    font-size: 1.3rem;
    color: #0a2c40;
    margin-bottom: 10px;
}

.read-more {
    color: #2bd6c5;
    text-decoration: none;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: #0a2c40; /* Azul oscuro */
    color: #ffffff; /* Blanco */
    text-align: center;
    padding: 25px 0;
    margin-top: 30px;
}

/* Video Gallery - Modern Redesign */
.video-gallery {
    padding: 60px 0;
    background-color: #f8f9fa; /* A slightly off-white background for the section */
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns on desktop */
    gap: 30px; /* Slightly reduced gap */
    max-width: 980px; /* Constrain the grid to make cards smaller */
    margin: 0 auto; /* Center the grid */
}

.video-card {
    background-color: #ffffff;
    border-radius: 15px; /* Softer, more modern border radius */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); /* Deeper, softer shadow */
    overflow: hidden; /* Ensures content stays within the card's rounded corners */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    transform: translateY(-10px); /* A more pronounced lift on hover */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-thumbnail video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0.4);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    opacity: 0;
}

.video-card:hover .play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 20px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.video-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0a2c40;
    margin: 0 0 10px 0;
}

.video-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    flex-grow: 1; /* Allows description to take up available space */
    margin-bottom: 15px;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #777;
}

.video-duration {
    /* Style remains the same */
}

.video-views::before {
    content: '•';
    margin: 0 8px;
}

/* Lightbox Styles */
.lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1001; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.85); /* Black w/ opacity */
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    background-color: #000;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 900px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.lightbox-content video {
    width: 100%;
    height: auto;
}

.close-lightbox {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Responsive adjustments for the new video gallery */
@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: 1fr; /* 1 column on tablets */
    }
}

@media (max-width: 576px) {
    .video-info {
        padding: 15px 20px;
    }

    .video-title {
        font-size: 1.2rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }

    .main-nav {
        margin-top: 15px;
    }

    .main-nav a {
        margin: 0 10px;
    }

    .hero h2 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .job-listings-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}
