/* Article Single Page Layout */
.article-layout-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    padding: 2rem 1rem;
}

.article-single-container {
    flex: 1;
    min-width: 0;
    padding-bottom: 3rem;
}

/* Sidebar Styling */
.article-sidebar {
    width: 320px;
    flex-shrink: 0;
}

.sidebar-widget {
    margin-bottom: 3rem;
}

.widget-title {
    font-family: 'Marcellus', serif;
    font-size: 1.1rem;
    color: #4b5563;
    text-align: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Search Widget */
.search-widget .search-form {
    display: flex;
    background: #6895b4;
    border-radius: 8px;
    overflow: hidden;
    padding: 2px;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.8rem 1.2rem;
    color: white;
    font-family: 'Marcellus', serif;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.85);
}

.search-button {
    background: transparent;
    border: none;
    padding: 0 1.2rem;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* Recent Posts Widget */
.recent-posts-list {
    background: #f0f7f9;
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
}

.recent-post-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    text-decoration: none;
    transition: opacity 0.2s;
}

.recent-post-item:hover {
    opacity: 0.85;
}

.recent-post-item:last-child {
    margin-bottom: 0;
}

.recent-post-thumb {
    width: 65px;
    height: 65px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.recent-post-info {
    flex: 1;
    min-width: 0;
}

.recent-post-info h4 {
    font-family: 'Marcellus', serif;
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.4;
    margin: 0 0 0.5rem 0;
    font-weight: 400;
}

.recent-post-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: #9ca3af;
}

.recent-post-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* Categories Widget */
.categories-cloud {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.category-tag-link {
    display: block;
    padding: 0.65rem 0.25rem;
    text-align: center;
    background: #E77B8A;
    color: white;
    text-decoration: none;
    font-family: 'Marcellus', serif;
    font-size: 0.8rem;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: transform 0.2s;
}

.category-tag-link:hover {
    transform: translateY(-2px);
}

.category-tag-link[data-category="all"] { background: #A45F7C; }
.category-tag-link[data-category="planificacion"] { background: #E77B8A; }
.category-tag-link[data-category="tramites"] { background: #E77B8A; }
.category-tag-link[data-category="espacios"] { background: #E77B8A; }
.category-tag-link[data-category="venues"] { background: #E77B8A; }
.category-tag-link[data-category="proveedores"] { background: #E77B8A; }
.category-tag-link[data-category="vestimenta"] { background: #E77B8A; }
.category-tag-link[data-category="decoracion"] { background: #E77B8A; }
.category-tag-link[data-category="belleza"] { background: #E77B8A; }
.category-tag-link[data-category="tradiciones"] { background: #E77B8A; }
.category-tag-link[data-category="luna-de-miel"] { background: #E77B8A; }
.category-tag-link[data-category="tecnologia"] { background: #E77B8A; }

/* Tags Widget */
.tags-cloud {
    background: #f0f7f9;
    padding: 1.75rem 1.25rem;
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.tag-link {
    display: block;
    background: white;
    padding: 0.65rem 0.25rem;
    text-align: center;
    color: #6895b4;
    text-decoration: none;
    font-family: 'Marcellus', serif;
    font-size: 0.8rem;
    border-radius: 18px; /* Rounded Tags based on mockup detail */
    box-shadow: 0 2px 5px rgba(0,0,0,0.04);
    font-weight: 500;
}

.tag-link:hover {
    background: #6895b4;
    color: white;
}

/* Responsive Scaling */
@media (max-width: 1024px) {
    .article-layout-container {
        flex-direction: column;
        gap: 4rem;
    }
    
    .article-sidebar {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .article-header-image {
        max-height: 500px;
    }
}

.article-header-card {
    position: relative;
    background: white;
    margin-bottom: 3rem;
    padding-top: 2.5rem;
}

.article-header-date-badge {
    font-family: 'Marcellus', serif;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: #E77B8A;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.article-header-date-badge .day {
    font-size: 2.3rem;
    line-height: 1;
    margin-bottom: 2px;
}

.article-header-date-badge .month {
    font-size: 1rem;
    text-transform: uppercase;
    line-height: 1;
}

.article-header-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 11rem 0 0 0;
    margin-bottom: 2rem;
}

.article-header-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.article-header-content {
    text-align: center;
    padding: 0 1rem;
}

.article-header-content .article-category {
    display: block;
    font-family: 'Alex Brush', cursive;
    color: #6895B4;
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.article-header-content .article-title {
    font-family: 'Marcellus', serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.article-header-content .article-excerpt {
    font-family: 'Marcellus', serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.article-divider {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 1.5rem 0;
}

.article-header-content .article-meta {
    font-family: 'Marcellus', serif;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 2rem;
}

.article-header-content .article-meta span {
    display: flex;
    align-items: center;
}

/* Article Container */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: #6b7280;
    font-family: 'Marcellus', serif;
}

.breadcrumbs a {
    color: #8b5cf6;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Article Header */
.article-header {
    margin-bottom: 2rem;
}

.article-category-tag {
    display: inline-block;
    background: #8b5cf6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.article-h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1f2937;
    margin: 1rem 0;
}

.article-meta {
    display: flex;
    gap: 2rem;
    color: #6b7280;
    font-size: 0.875rem;
    margin: 1rem 0;
}

.article-lead {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.8;
    margin: 1.5rem 0;
    font-weight: 500;
}

.featured-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    margin: 2rem 0;
}

/* Table of Contents */
.table-of-contents {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
    border-left: 4px solid #8b5cf6;
}

.table-of-contents h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
}

.table-of-contents li {
    margin: 0.5rem 0;
}

.table-of-contents a {
    color: #8b5cf6;
    text-decoration: none;
}

.table-of-contents a:hover {
    text-decoration: underline;
}

/* Article Content */
.article-content {
    font-family: 'Marcellus', serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #1f2937;
    text-align: left;
}

.article-content a {
    color: #8B4367; /* Burgundy from Brand Guidelines */
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    text-decoration-color: #E8B4BC; /* Rose Pink for subtle underline */
    font-weight: 500;
    transition: all 0.2s ease;
}

.article-content a:hover {
    color: #6895B4; /* Sky Blue from Brand Guidelines on hover */
    text-decoration-color: #6895B4;
    text-decoration-thickness: 2px;
}

.article-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1f2937;
}

.article-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 0.75rem;
}

.article-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
    color: #4b5563;
}

.article-content p {
    margin: 1rem 0;
}

.article-content ul,
.article-content ol {
    margin: 1rem 0 1rem 2rem;
}

.article-content li {
    margin: 0.5rem 0;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.article-content th,
.article-content td {
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    text-align: left;
}

.article-content th {
    background: #f9fafb;
    font-weight: 600;
}

.roboto-strong {
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
}

/* CTA Box */

/* CTA Box */
/* CTA Box */
.cta-box {
    background: linear-gradient(rgba(44, 76, 104, 0.8), rgba(44, 76, 104, 0.8)), url('../../blog/assets/images/2026/01/fondo_calc.jpeg');
    background-size: cover;
    background-position: center 40%;
    color: white;
    padding: 3.5rem 3rem;
    border-radius: 1.5rem;
    text-align: center;
    margin: 4rem 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

.article-content .cta-box h3,
.cta-box h3 {
    margin: 0;
    font-family: 'Marcellus', serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: white !important;
    text-shadow: none !important;
    text-transform: none !important;
}

.article-content .cta-box p,
.cta-box p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    margin: 0 0 1.5rem 0 !important;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.6;
    max-width: 800px;
    color: white !important;
    text-transform: none !important;
    text-shadow: none !important;
}

a.btn-cta {
    margin-top: 1.3rem;
}

.article-content a.btn-cta,
a.btn-cta,
.btn-cta {
    display: inline-block;
    background: white;
    color: #4b5563 !important;
    padding: 0.75rem 2.5rem; /* Slightly smaller button */
    border-radius: 50px;
    text-decoration: none !important;
    font-family: 'Marcellus', serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.article-content a.btn-cta:hover,
a.btn-cta:hover,
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
    background: #f8fafc;
    color: #1f2937 !important;
    text-decoration-color: transparent !important;
}

/* White CTA Block (General utility for premium white boxes) */
.cta-white-block {
    margin: 4rem 0;
    background-color: white !important;
    border: 1px solid rgba(104, 149, 180, 0.15);
    border-radius: 1.5rem;
    padding: 3.5rem 2rem;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-white-block h3 {
    font-family: 'Marcellus', serif;
    font-size: 2.2rem !important;
    color: #1a202c !important;
    margin: 1rem 0 1rem 0 !important;
    text-transform: none !important;
    line-height: 1.2 !important;
}

.cta-white-block p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.15rem !important;
    color: #4b5563 !important;
    max-width: 750px;
    margin: 0 auto 2.5rem auto !important;
    line-height: 1.6 !important;
    text-transform: none !important;
    text-decoration: none !important;
}

/* Dark version of the button specifically for white CTA blocks */
.cta-white-block a.btn-cta-dark {
    display: inline-block;
    background-color: #1a202c !important;
    color: white !important;
    font-family: 'Marcellus', serif;
    font-weight: 400;
    padding: 1.1rem 3rem;
    border-radius: 9999px;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    font-size: 1rem;
}

.cta-white-block a.btn-cta-dark:hover {
    background-color: #2d3748 !important;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white !important;
}

.cta-white-block .accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, #E8B4BC, #6895B4);
}

/* Custom Blockquote */
.blog-quote {
    text-align: center;
    font-family: 'Marcellus', serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #6b7280; /* Gray 500 */
    padding: 1rem 3rem; /* Add horizontal padding for quotes */
    max-width: 800px;
    margin: 3rem auto; /* More vertical space */
    position: relative;
    border: none;
}

.blog-quote::before {
    content: "“";
    font-family: 'Times New Roman', serif;
    font-size: 5rem;
    color: #9ca3af; /* Gray 400 */
    position: absolute;
    top: -1.5rem;
    left: 0;
    line-height: 1;
}

.blog-quote::after {
    content: "”";
    font-family: 'Times New Roman', serif;
    font-size: 5rem;
    color: #9ca3af; /* Gray 400 */
    position: absolute;
    bottom: -3rem;
    right: 0;
    line-height: 1;
}

/* Author Bio */
.author-bio {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
    margin: 3rem 0;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* Related Articles */
.related-articles {
    margin: 3rem 0;
}

.related-articles h2 {
    font-family: 'Marcellus', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-align: center;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.related-article-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.related-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.related-article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.related-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-article-card:hover .related-article-image img {
    transform: scale(1.05);
}

.related-article-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.related-article-category {
    display: inline-block;
    background: #8b5cf6;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    width: fit-content;
}

.related-article-title {
    font-family: 'Marcellus', serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.4;
    margin: 0 0 0.75rem;
    color: #1f2937;
}

.related-article-excerpt {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #6b7280;
    margin: 0 0 1rem;
    flex: 1;
}

.related-article-link {
    color: #8b5cf6;
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.related-article-card:hover .related-article-link {
    color: #7c3aed;
}

/* Blog Index Styles */
.blog-hero{background:linear-gradient(135deg,#5d85a2,#6895b4);color:#fff;padding:5rem 0;text-align:center;min-height:280px;display:flex;align-items:center;justify-content:center}.blog-hero h1{font-family:Alex Brush,cursive;font-size:4rem;font-weight:400;margin-bottom:.5rem;line-height:1.2}.blog-hero p{font-size:1.125rem;opacity:.95;font-weight:300;max-width:800px;margin:0 auto}

.category-filter {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem 0;
    padding: 0 1rem;
}

.category-tag {
    background: #E77B8A;
    border: none;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 0.875rem;
}

.category-tag:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.category-tag.active:not([data-category="all"]) {
    background: #6895B4 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.category-tag-link.active {
    background: #6895B4 !important;
}

/* Category-specific colors */
.category-tag[data-category="all"] { background: #A45F7C; }
.category-tag[data-category="planificacion"] { background: #E77B8A; }
.category-tag[data-category="tramites"] { background: #E77B8A; }
.category-tag[data-category="espacios"] { background: #E77B8A; }
.category-tag[data-category="venues"] { background: #E77B8A; }
.category-tag[data-category="proveedores"] { background: #E77B8A; }
.category-tag[data-category="vestimenta"] { background: #E77B8A; }
.category-tag[data-category="decoracion"] { background: #E77B8A; }
.category-tag[data-category="belleza"] { background: #E77B8A; }
.category-tag[data-category="tradiciones"] { background: #E77B8A; }
.category-tag[data-category="luna-de-miel"] { background: #E77B8A; }
.category-tag[data-category="tecnologia"] { background: #E77B8A; }

.article-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.article-card {
    padding-top: 2.5rem;
    background: white;
    border-radius: 1rem;
    overflow: visible;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
}

.article-card:hover {
    transform: translateY(-4px);
}

.article-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 11rem 0 0 0;
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.article-card a:hover .article-image {
    transform: scale(1.05);
}

.article-date-badge {
    font-family: 'Marcellus', serif;
    position: absolute;
    top: 15px;
    left: 15px;
    width: 100px;
    height: 100px;
    background: #E77B8A;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.article-date-badge .day {
    font-size: 2.3rem;
    line-height: 1;
    margin-bottom: 2px;
}

.article-date-badge .month {
    font-size: 1rem;
    text-transform: uppercase;
    line-height: 1;
}

.article-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.article-category {
    display: block;
    font-family: 'Alex Brush', cursive;
    color: #6b7280;
    padding: 0;
    border-radius: 0;
    font-size: 2.2rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    background: transparent !important;
    text-align: center;
}

/* Category-specific colors for article cards */
.article-category[data-category="planificacion"] { background: #e85d75; }
.article-category[data-category="tramites"] { background: #f39c6b; }
.article-category[data-category="espacios"] { background: #f8b739; }
.article-category[data-category="venues"] { background: #6895b4; }
.article-category[data-category="proveedores"] { background: #e85d75; }
.article-category[data-category="vestimenta"] { background: #f39c6b; }
.article-category[data-category="decoracion"] { background: #f8b739; }
.article-category[data-category="belleza"] { background: #6895b4; }
.article-category[data-category="tradiciones"] { background: #e85d75; }
.article-category[data-category="luna-de-miel"] { background: #f39c6b; }
.article-category[data-category="tecnologia"] { background: #6895b4; }

.article-title {
    font-family: 'Marcellus', serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1f2937;
    text-align: center;
}

.article-title a {
    color: #1f2937;
    text-decoration: none;
}

.article-title a:hover {
    color: #1f2937;
}

.article-excerpt {
    font-family: 'Marcellus', serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.5rem;
    flex: 1;
    font-weight: 400;
    text-align: center;
}

.article-meta {
    font-family: 'Marcellus', serif;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.article-footer {
    margin-top: auto;
    text-align: center;
}

.btn-read-more {
    font-family: 'Marcellus', serif;
    display: inline-block;
    background: #6895b4;
    color: white !important;
    padding: 0.5rem 2.5rem;
    border-radius: 0.25rem;
    text-decoration: none !important;
    font-weight: 400;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-read-more:hover {
    background: #5d85a2;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(104, 149, 180, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .article-h1 {
        font-size: 2rem;
    }
    
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .article-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .article-image-wrapper {
        height: 220px;
    }
    
    .article-date-badge {
        width: 100px;
        height: 100px;
    }
    
    .article-date-badge .day {
        font-size: 2.5rem;
    }
    
    .related-articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .related-article-image {
        height: 180px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Nupcia Custom Blog Table Design */
.article-content .nupcia-blog-table {
    width: 100%;
    margin: 2.5rem 0;
    border-collapse: separate !important; /* Force separate for border-radius */
    border-spacing: 0;
    background-color: #A45F7C;
    color: white;
    font-family: 'Marcellus', serif;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px -10px rgba(164, 95, 124, 0.5);
    border: none;
}

.article-content .nupcia-blog-table th,
.article-content .nupcia-blog-table td {
    border: none; /* Reset default blog styles */
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding: 1.5rem 1rem;
    vertical-align: middle;
    text-align: center;
    font-weight: 400;
}

.article-content .nupcia-blog-table th {
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1.1rem;
    padding-top: 1.75rem;
    padding-bottom: 1.25rem;
    color: white; /* Ensure white text */
}

.article-content .nupcia-blog-table td {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 300;
}

/* Remove right borders for last column */
.article-content .nupcia-blog-table th:last-child,
.article-content .nupcia-blog-table td:last-child {
    border-right: none;
}

/* Remove bottom borders for last row */
.article-content .nupcia-blog-table tbody tr:last-child td {
    border-bottom: none;
}

/* First Column Styling (City Names) */
.article-content .nupcia-blog-table tbody td:first-child {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .article-content .nupcia-blog-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        border-radius: 12px;
        font-size: 0.9rem;
    }
    
    .article-content .nupcia-blog-table th,
    .article-content .nupcia-blog-table td {
        padding: 1rem 0.75rem;
    }
}

/* Force text alignment for single article page to override card styles */
.article-single-container .article-content {
    text-align: left;
    display: block;
}

/* Ensure data tables keep their internal alignment */
.article-single-container .article-content .nupcia-blog-table th,
.article-single-container .article-content .nupcia-blog-table td {
    text-align: center;
}

/* Mobile Responsiveness for CTA Box */
@media (max-width: 768px) {
    .cta-box {
        padding: 3rem 1.5rem;
        margin: 3rem 0;
        background-position: center center;
        border-radius: 1rem;
    }
    
    .cta-box h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .cta-box p {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .btn-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
        width: 100%; /* Full width button on mobile */
        box-sizing: border-box;
        text-align: center;
        white-space: nowrap;
    }

    /* Adjust blockquote for mobile */
    .blog-quote {
        padding: 0 1.5rem;
        margin: 3rem auto;
    }
    
    .blog-quote::before {
        font-size: 4rem;
        top: -2rem;
        left: -0.5rem;
    }

    .blog-quote::after {
        font-size: 4rem;
        bottom: -3.5rem;
        right: -0.5rem;
    }
}

/* Mobile Category Filter Redesign */
@media (max-width: 768px) {
    .category-filter {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .category-tag {
        width: 100%;
        text-align: center;
        padding: 0.65rem 0.25rem;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
}
