/* ==============================================================
   FATECO PORTAL - ESTILOS ACTUALIDAD (Archive & Single)
   Vanilla CSS con Variables Premium e Interacciones Micro-dinámicas
   ============================================================== */

:root {
    --primary-blue: #1a2e44;
    --primary-orange: #f39204;
    --dark-footer: #111827;
    --white: #ffffff;
    --gray-bg: #f8fafc;
    --gray-light: #f3f4f6;
    --gray-text: #4b5563;
    --gray-border: #e2e8f0;
}

.fateco-portal-wrapper {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    margin-top: 92px !important;
}

/* ================================================================
   HERO — Actualidad Archive
================================================================ */
.act-hero {
    background-color: var(--primary-blue);
    height: 300px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .act-hero { height: 400px; }
}

.act-hero-decor {
    pointer-events: none;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
    height: 100%;
    width: 70%;
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    opacity: 0.07;
    mix-blend-mode: screen;
}

.act-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
    width: 100%;
}

.act-hero-text {
    max-width: 56rem;
    position: relative;
    z-index: 10;
}

.act-hero-h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0;
}

@media (min-width: 768px) {
    .act-hero-h1 { font-size: 4.4rem; }
}

.act-orange {
    color: var(--primary-orange);
}

.act-hero-sub {
    margin-top: 24px;
    color: var(--white);
    max-width: 42rem;
    font-weight: 300;
    line-height: 1.6;
    font-size: 1.1rem;
}

@media (min-width: 768px) {
    .act-hero-sub { font-size: 1.32rem; margin-top: 32px; }
}

/* ================================================================
   MAIN LAYOUT
================================================================ */
.act-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 24px;
}

@media (min-width: 1024px) {
    .act-main { padding: 96px 24px; }
}

.act-container {
    width: 100%;
}

/* ================================================================
   SECTION LABELS
================================================================ */
.act-section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.act-label-bar {
    display: block;
    width: 32px;
    height: 2px;
    flex-shrink: 0;
}

.act-label-bar--orange { background-color: var(--primary-orange); }
.act-label-bar--gray { background-color: #cbd5e1; }

.act-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-blue);
    margin: 0;
}

/* ================================================================
   FEATURED ARTICLE
================================================================ */
.act-featured-section {
    margin-bottom: 96px;
}

.act-featured-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    background-color: #f9fafb;
    border: 1px solid #f1f5f9;
    border-radius: 2.5rem;
    padding: 16px;
    text-decoration: none;
    color: var(--primary-blue);
    transition: background-color 0.3s;
    align-items: center;
}

@media (min-width: 1024px) {
    .act-featured-card {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        padding: 32px;
        border-radius: 3rem;
    }
}

.act-featured-card:hover {
    background-color: #f1f5f9;
}

.act-featured-img {
    position: relative;
    height: 300px;
    border-radius: 2rem;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .act-featured-img { height: 450px; }
}

.act-featured-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0; left: 0;
    transition: transform 0.7s;
}

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

.act-featured-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
    color: var(--primary-orange);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 8px 16px;
    border-radius: 9999px;
}

.act-featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px;
}

@media (min-width: 1024px) {
    .act-featured-content { padding: 0 48px 0 0; }
}

.act-meta-row {
    display: flex;
    gap: 24px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.act-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.act-featured-title {
    font-size: 1.875rem;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 24px 0;
    color: var(--primary-blue);
    transition: color 0.2s;
}

@media (min-width: 768px) {
    .act-featured-title { font-size: 2.25rem; }
}

.act-featured-card:hover .act-featured-title {
    color: var(--primary-orange);
}

.act-featured-excerpt {
    font-size: 1.125rem;
    font-weight: 300;
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 40px 0;
}

.act-read-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.125rem;
    font-weight: 900;
    color: var(--primary-blue);
}

.act-arrow {
    transition: transform 0.2s;
    flex-shrink: 0;
}

.act-featured-card:hover .act-arrow {
    transform: translateX(8px);
}

/* ================================================================
   AGRONOTICIAS LIST
================================================================ */
.act-news-section {
    margin-top: 0;
}

.act-news-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.act-news-item {
    display: block;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 48px;
    text-decoration: none;
    color: var(--primary-blue);
    transition: all 0.3s;
}

.act-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.act-news-flex {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
}

@media (min-width: 768px) {
    .act-news-flex {
        flex-direction: row;
        align-items: flex-start;
        gap: 32px;
    }
}

.act-news-img {
    width: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    flex-shrink: 0;
    aspect-ratio: 1.6;
}

@media (min-width: 768px) {
    .act-news-img {
        width: 320px;
        aspect-ratio: auto;
        height: auto;
    }
}

.act-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
    aspect-ratio: 1.6;
}

@media (min-width: 768px) {
    .act-news-img img { aspect-ratio: 1.6; }
}

.act-news-item:hover .act-news-img img {
    transform: scale(1.05);
}

.act-news-content {
    flex: 1;
}

.act-news-title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 8px 0;
    transition: color 0.2s;
    color: var(--primary-blue);
}

.act-news-item:hover .act-news-title {
    color: var(--primary-orange);
}

.act-news-author {
    font-size: 0.875rem;
    font-style: italic;
    color: #64748b;
    margin-bottom: 16px;
}

.act-news-author strong {
    color: var(--primary-blue);
    font-style: normal;
    font-weight: 700;
}

.act-news-excerpt {
    font-size: 1rem;
    font-weight: 300;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    max-width: 672px;
}

/* ================================================================
   SINGLE BLOG — /actualidad/[slug]/
================================================================ */
.fateco-article-detail-section {
    padding: 40px 24px 80px 24px;
}

@media (min-width: 768px) {
    .fateco-article-detail-section { padding-top: 80px; padding-bottom: 120px; }
}

.fateco-article-detail-container {
    max-width: 896px;
    margin: 0 auto;
}

.fateco-back-link-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 48px;
    transition: color 0.2s;
}

.fateco-back-link-blog:hover {
    color: var(--primary-orange);
}

.article-meta-badge-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.article-badge {
    background-color: rgba(243, 146, 4, 0.1);
    color: var(--primary-orange);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 6px 16px;
    border-radius: 9999px;
}

.meta-divider { color: #e2e8f0; }

.read-time-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
}

.article-title-main {
    font-size: 1.875rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 0 0 32px 0;
    color: var(--primary-blue);
}

@media (min-width: 768px) {
    .article-title-main { font-size: 3rem; }
}

.article-author-share-row {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    padding: 24px 0;
    margin-bottom: 48px;
}

@media (min-width: 640px) {
    .article-author-share-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.author-info-box p { margin: 0; }

.author-name {
    font-size: 0.875rem;
    font-weight: 900;
}

.article-date {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 4px;
}

.share-buttons-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-label {
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.share-btn {
    text-decoration: none;
    display: inline-flex;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: #f8fafc;
    color: #4b5563;
    font-size: 0.75rem;
    font-weight: bold;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.share-btn.fb:hover, .share-btn:hover.fb { background-color: #1877F2; color: #fff; }
.share-btn.ig:hover { background-color: #E4405F; color: #fff; }
.share-btn.mail:hover { background-color: #ea4335; color: #fff; }
.share-btn.wa:hover { background-color: #25D366; color: #fff; }

.article-large-image-wrapper {
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
    margin-bottom: 64px;
    height: 300px;
}

@media (min-width: 768px) {
    .article-large-image-wrapper { height: 500px; border-radius: 3rem; }
}

.article-large-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Prose-style Content */
.article-rich-content {
    font-size: 1.125rem;
    font-weight: 300;
    color: #374151;
    line-height: 1.8;
}

.article-rich-content h2 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-top: 48px;
    margin-bottom: 24px;
    color: var(--primary-blue);
}

@media (min-width: 768px) {
    .article-rich-content h2 { font-size: 1.875rem; }
}

.article-rich-content p {
    margin-bottom: 24px;
}

.article-rich-content strong,
.article-rich-content b {
    font-weight: 700;
    color: var(--primary-blue);
}

.article-rich-content a {
    color: var(--primary-orange);
    text-decoration: underline;
}

/* SVG formatting */
.fateco-portal-wrapper svg {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}


.fateco-actualidad-hero {
    background-color: var(--primary-blue);
    height: 300px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .fateco-actualidad-hero { height: 400px; }
}

.hero-actualidad-title {
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
    color: var(--white) !important;
    margin: 0 !important;
    letter-spacing: -0.03em !important;
}

@media (min-width: 1024px) {
    .hero-actualidad-title { font-size: 4.4rem !important; }
}

.hero-actualidad-subtitle {
    font-size: 1.1rem !important;
    font-weight: 300 !important;
    color: var(--white) !important;
    line-height: 1.6 !important;
    margin-top: 24px !important;
    max-width: 42rem !important;
}

@media (min-width: 768px) {
    .hero-actualidad-subtitle { font-size: 1.32rem !important; }
}

/* --- Main Archive Area --- */
.fateco-actualidad-main {
    padding: 64px 24px;
}

.fateco-actualidad-container {
    max-width: 1280px;
    margin: 0 auto;
}

.fateco-title-bar-orange {
    width: 32px !important;
    height: 2px !important;
    background-color: var(--primary-orange) !important;
    display: block !important;
}

.fateco-title-bar-gray {
    width: 32px !important;
    height: 2px !important;
    background-color: #cbd5e1 !important;
    display: block !important;
}

/* --- Featured Article (Destacado) --- */
.fateco-destacado-section {
    margin-bottom: 96px;
}

.fateco-destacado-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    background-color: #f9fafb !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 2.5rem !important;
    padding: 16px;
    text-decoration: none;
    color: var(--primary-blue);
    transition: all 0.3s;
}

@media (min-width: 1024px) {
    .fateco-destacado-card {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        padding: 32px !important;
        border-radius: 3rem !important;
    }
}

.fateco-destacado-card:hover {
    background-color: #f1f5f9;
}

.fateco-destacado-card .card-image {
    position: relative;
    height: 300px;
    border-radius: 2rem;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .fateco-destacado-card .card-image { height: 450px; }
}

.fateco-destacado-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.fateco-destacado-card:hover .card-image img {
    transform: scale(1.05);
}

.fateco-destacado-card .category-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    color: var(--primary-orange);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 8px 16px;
    border-radius: 99px;
}

.fateco-destacado-card .card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px;
}

@media (min-width: 1024px) {
    .fateco-destacado-card .card-content { padding: 0 48px 0 0; }
}

.meta-row {
    display: flex;
    gap: 24px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 24px;
}

.fateco-destacado-card h3 {
    font-size: 1.875rem;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 24px 0;
    transition: color 0.2s;
}

@media (min-width: 768px) {
    .fateco-destacado-card h3 { font-size: 2.25rem; }
}

.fateco-destacado-card:hover h3 {
    color: var(--primary-orange);
}

.fateco-destacado-card p {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--gray-text);
    line-height: 1.6;
    margin: 0 0 40px 0;
}

.read-more {
    font-size: 1.125rem;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.read-more .arrow-right {
    font-size: 18px;
    color: var(--primary-orange);
    transition: transform 0.2s;
}

.fateco-destacado-card:hover .read-more .arrow-right {
    transform: translateX(8px);
}

/* --- Agronoticias List (Vercel Style) --- */
.fateco-news-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 48px !important;
}

.fateco-news-item {
    display: block !important;
    border-bottom: 1px solid var(--gray-light) !important;
    padding-bottom: 48px !important;
    text-decoration: none;
    color: var(--primary-blue);
    transition: all 0.3s !important;
}

.fateco-news-item:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.news-item-flex {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
    align-items: stretch !important;
}

@media (min-width: 768px) {
    .news-item-flex {
        flex-direction: row !important;
        align-items: flex-start !important;
    }
}

.news-img-wrapper {
    width: 100% !important;
    aspect-ratio: 1.6 !important;
    border-radius: 1.5rem !important;
    overflow: hidden;
    border: 1px solid var(--gray-light);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .news-img-wrapper {
        width: 320px !important;
    }
}

.news-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.fateco-news-item:hover .news-img-wrapper img {
    transform: scale(1.05);
}

.news-content-wrapper {
    flex: 1 !important;
}

.news-content-wrapper h3 {
    font-size: 1.5rem !important;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 8px 0;
    transition: color 0.2s;
}

.fateco-news-item:hover .news-content-wrapper h3 {
    color: var(--primary-orange);
}

.news-author-row {
    font-size: 0.875rem;
    font-style: italic;
    color: #64748b;
    margin-bottom: 16px;
}

.news-author-row strong {
    color: var(--primary-blue);
    font-style: normal;
}

.news-content-wrapper p {
    font-size: 1rem !important;
    font-weight: 300;
    color: #64748b;
    line-height: 1.6 !important;
    margin: 0;
    max-width: 672px !important;
}

/* --- Single Blog /actualidad/[slug] --- */
.fateco-article-detail-section {
    padding: 40px 24px 80px 24px;
}

@media (min-width: 768px) {
    .fateco-article-detail-section { padding-top: 80px; padding-bottom: 120px; }
}

.fateco-article-detail-container {
    max-width: 896px;
    margin: 0 auto;
}

.fateco-back-link-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 48px;
    transition: color 0.2s;
}

.fateco-back-link-blog:hover {
    color: var(--primary-orange);
}

.article-meta-badge-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.article-badge {
    background-color: rgba(243, 146, 4, 0.1);
    color: var(--primary-orange);
    font-size: 10px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 6px 16px;
    border-radius: 99px;
}

.meta-divider {
    color: #e2e8f0;
}

.read-time-item {
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
}

.article-title-main {
    font-size: 1.875rem;
    font-weight: 950;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 0 0 32px 0;
    color: var(--primary-blue);
}

@media (min-width: 768px) {
    .article-title-main { font-size: 3rem; }
}

.article-author-share-row {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
    padding: 24px 0;
    margin-bottom: 48px;
}

@media (min-width: 640px) {
    .article-author-share-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.author-info-box p {
    margin: 0;
}

.author-name {
    font-size: 0.875rem;
    font-weight: 950;
}

.article-date {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 4px;
}

.share-buttons-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-label {
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.share-btn {
    text-decoration: none;
    display: inline-flex;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: var(--gray-bg);
    color: #4b5563;
    font-size: 0.75rem;
    font-weight: bold;
    transition: all 0.2s;
}

.share-btn.fb:hover { background-color: #1877F2; color: var(--white); }
.share-btn.tw:hover { background-color: #1DA1F2; color: var(--white); }
.share-btn.wa:hover { background-color: #25D366; color: var(--white); }
.share-btn.mail:hover { background-color: #ea4335; color: var(--white); }

.article-large-image-wrapper {
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
    margin-bottom: 64px;
    height: 300px;
}

@media (min-width: 768px) {
    .article-large-image-wrapper { height: 500px; border-radius: 3rem; }
}

.article-large-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Prose-style Content formatting */
.article-rich-content {
    font-size: 1.125rem;
    font-weight: 300;
    color: #374151;
    line-height: 1.8;
}

.article-rich-content h2 {
    font-size: 1.5rem;
    font-weight: 950;
    margin-top: 48px;
    margin-bottom: 24px;
    color: var(--primary-blue);
}

@media (min-width: 768px) {
    .article-rich-content h2 { font-size: 1.875rem; }
}

.article-rich-content p {
    margin-bottom: 24px;
}

.article-rich-content strong,
.article-rich-content b {
    font-weight: 700;
    color: var(--primary-blue);
}

/* Tailwind Compatibility Utility Classes for actualidades pages */
.fateco-portal-wrapper .flex { display: flex !important; }
.fateco-portal-wrapper .items-center { align-items: center !important; }
.fateco-portal-wrapper .justify-between { justify-content: space-between !important; }
.fateco-portal-wrapper .gap-2 { gap: 8px !important; }
.fateco-portal-wrapper .gap-3 { gap: 12px !important; }
.fateco-portal-wrapper .gap-4 { gap: 16px !important; }
.fateco-portal-wrapper .gap-6 { gap: 24px !important; }
.fateco-portal-wrapper .mb-6 { margin-bottom: 24px !important; }
.fateco-portal-wrapper .mb-8 { margin-bottom: 32px !important; }
.fateco-portal-wrapper .mb-12 { margin-bottom: 48px !important; }
.fateco-portal-wrapper .mb-24 { margin-bottom: 96px !important; }
.fateco-portal-wrapper .mt-6 { margin-top: 24px !important; }
.fateco-portal-wrapper .mt-10 { margin-top: 40px !important; }
.fateco-portal-wrapper .mt-20 { margin-top: 80px !important; }
.fateco-portal-wrapper .pb-12 { padding-bottom: 48px !important; }
.fateco-portal-wrapper .pt-10 { padding-top: 40px !important; }
.fateco-portal-wrapper .pb-16 { padding-bottom: 64px !important; }
.fateco-portal-wrapper .pt-20 { padding-top: 80px !important; }
.fateco-portal-wrapper .py-6 { padding-top: 24px !important; padding-bottom: 24px !important; }
.fateco-portal-wrapper .border-y { border-top: 1px solid #f1f5f9 !important; border-bottom: 1px solid #f1f5f9 !important; }
.fateco-portal-wrapper .border-gray-100 { border-color: #f1f5f9 !important; }
.fateco-portal-wrapper .bg-gray-50 { background-color: #f9fafb !important; }
.fateco-portal-wrapper .rounded-full { border-radius: 9999px !important; }
.fateco-portal-wrapper .rounded-lg { border-radius: 8px !important; }
.fateco-portal-wrapper .text-gray-400 { color: #9ca3af !important; }
.fateco-portal-wrapper .text-gray-500 { color: #6b7280 !important; }
.fateco-portal-wrapper .text-sm { font-size: 0.875rem !important; }
.fateco-portal-wrapper .text-xs { font-size: 0.75rem !important; }
.fateco-portal-wrapper .font-bold { font-weight: 700 !important; }
.fateco-portal-wrapper .font-black { font-weight: 900 !important; }
.fateco-portal-wrapper .uppercase { text-transform: uppercase !important; }
.fateco-portal-wrapper .tracking-widest { letter-spacing: 0.1em !important; }
.fateco-portal-wrapper .bg-\[\#f39204\]\/10 { background-color: rgba(243, 146, 4, 0.1) !important; }
.fateco-portal-wrapper .text-\[\#f39204\] { color: #f39204 !important; }
.fateco-portal-wrapper .text-\[\#1a2e44\] { color: #1a2e44 !important; }
.fateco-portal-wrapper .bg-transparent { background-color: transparent !important; }
.fateco-portal-wrapper .border-0 { border: 0 !important; }
.fateco-portal-wrapper .cursor-pointer { cursor: pointer !important; }
.fateco-portal-wrapper .transition-all { transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important; }
.fateco-portal-wrapper .transition-colors { transition: color 0.25s, background-color 0.25s !important; }

/* Social buttons colors and hover */
.fateco-portal-wrapper .p-2\.5 { padding: 10px !important; }
.fateco-portal-wrapper .hover\:bg-\[\#1877F2\]:hover { background-color: #1877F2 !important; }
.fateco-portal-wrapper .hover\:bg-\[\#E4405F\]:hover { background-color: #E4405F !important; }
.fateco-portal-wrapper .hover\:bg-\[\#ea4335\]:hover { background-color: #ea4335 !important; }
.fateco-portal-wrapper .hover\:bg-\[\#25D366\]:hover { background-color: #25D366 !important; }
.fateco-portal-wrapper .hover\:text-white:hover { color: #ffffff !important; }
.fateco-portal-wrapper .hover\:bg-\[\#1a2e44\]:hover { background-color: #1a2e44 !important; }

/* Tags styling */
.fateco-portal-wrapper .px-4 { padding-left: 16px !important; padding-right: 16px !important; }
.fateco-portal-wrapper .py-1\.5 { padding-top: 6px !important; padding-bottom: 6px !important; }

/* SVG formatting inside buttons */
.fateco-portal-wrapper svg.lucide {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}
.fateco-portal-wrapper .hover\:text-\[\#f39204\]:hover {
    color: #f39204 !important;
}

/* Specific SVG sizing for actualidades */
.fateco-portal-wrapper svg.fateco-back-arrow-icon {
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
}

.fateco-portal-wrapper svg.fateco-clock-icon {
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
}

.fateco-portal-wrapper svg.fateco-share-fb-icon,
.fateco-portal-wrapper svg.fateco-share-ig-icon,
.fateco-portal-wrapper svg.fateco-share-mail-icon,
.fateco-portal-wrapper svg.fateco-share-wa-icon,
.fateco-portal-wrapper svg.fateco-share-link-icon {
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
}

.fateco-portal-wrapper svg.act-calendar-icon {
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

.fateco-portal-wrapper svg.act-user-icon {
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

.fateco-portal-wrapper svg.act-arrow {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

/* Eliminate white gap at the bottom of the blog archive page */
.fateco-portal-wrapper.fateco-actualidad-archive {
    background-color: #f8fafc !important;
    min-height: auto !important;
}

