/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-color: #1f2937;
    --light-text: #6b7280;
    --background: #ffffff;
    --light-background: #f3f4f6;
    --border-color: #e5e7eb;
    --container-width: 1200px;
    --header-height: 80px;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-secondary {
    background-color: var(--light-background);
    color: var(--text-color);
}

.btn-secondary:hover {
    background-color: var(--border-color);
}

/* Header */
.header-wrapper {
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 10px 0;
    position: relative;
    z-index: 1000;
}

.header {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    position: relative;
    min-height: 80px;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    margin-right: 40px;
}

.logo-image {
    height: 75px;
    width: auto;
    transition: transform 0.3s ease;
    margin-top: -2px;
    margin-bottom: -2px;
}

.logo-text {
    margin-left: 10px;
    margin-top: 5px;
}

.logo-title {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 24px;
    line-height: 1.1;
    color: #000;
    margin-bottom: 3px;
}

.logo-subtitle {
    font-family: 'Arial', sans-serif;
    font-style: italic;
    font-size: 12px;
    color: #333;
    line-height: 1.2;
}

.main-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
}

.nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item-memoriam {
    margin-top: 0px;
    position: relative;
    top: 0px;
    white-space: nowrap;
}

.nav-item {
    margin: 0 8px;
    display: flex;
    align-items: center;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
    display: inline-block;
    line-height: normal;
    white-space: nowrap;
}

.nav-link:hover {
    color: #000;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #000;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.search-container {
    margin-left: 15px;
    position: relative;
}

.search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.search-toggle svg {
    width: 18px;
    height: 18px;
    fill: #333;
    transition: fill 0.3s ease, transform 0.3s ease;
}

.search-toggle:hover svg {
    fill: #000;
    transform: scale(1.1);
}

.search-form {
    position: absolute;
    top: 100%;
    right: 0;
    width: 350px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 10px;
    display: none;
    z-index: 100;
    flex-direction: row;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.search-form.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.search-input {
    width: 70%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    margin-bottom: 0;
    height: 42px;
    border-right: none;
    vertical-align: middle;
    line-height: 20px;
}

.search-input::placeholder {
    color: #999;
    vertical-align: middle;
}

.search-btn {
    width: 30%;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 8px 12px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-left: 0;
    height: 42px;
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .main-nav {
        flex-direction: row;
        width: 100%;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        padding: 15px;
        z-index: 100;
    }
    .nav-menu.active {
        display: flex;
    }
    .search-container {
        display: none;
    }
    .search-container-mobile {
        width: 100%;
        margin: 15px 0 5px 0;
        display: block !important;
    }
    .search-form-mobile {
        position: relative;
        display: flex;
        width: 100%;
        transform: none;
        opacity: 1;
        box-shadow: none;
        padding: 0;
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .logo-image {
        height: 65px;
    }
    .logo-title {
        font-size: 20px;
    }
    .logo-subtitle {
        font-size: 10px;
    }
}

@media (max-width: 576px) {
    .search-form {
        width: 200px;
    }
    .logo-image {
        height: 55px;
    }
}

/* Main Content */
.main {
    margin-top: var(--header-height);
    padding: 2rem 0;
}

/* Articles Section */
.articles {
    padding: 2rem 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.article-card {
    background-color: var(--background);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.article-image {
    position: relative;
    padding-top: 66.67%; /* 3:2 aspect ratio */
    overflow: hidden;
}

.article-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 1.5rem;
}

.article-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
}

.article-content a {
    color: var(--text-color);
}

.article-content a:hover {
    color: var(--primary-color);
}

.load-more {
    text-align: center;
    margin-top: 2rem;
}

/* Newsletter Section */
.newsletter {
    background-color: var(--light-background);
    padding: 4rem 0;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

/* Footer mejorado - basado en el diseño proporcionado */
.footer {
    background-color: #f5f5f5;
    padding: 1.5rem 5%;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    margin: 10px 10px 0 10px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* Brand section */
.footer-brand {
    display: flex;
    align-items: center;
}

.footer-brand-text {
    font-weight: bold;
    color: #333;
    font-size: 1.1rem;
    margin-right: 20px;
}

.cc-icons {
    display: flex;
    align-items: center;
    gap: 25px;
}

.cc-license {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cc-icon {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.by-icon {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.cc-license:hover .cc-icon,
.cc-license:hover .by-icon {
    transform: scale(1.1);
}

/* Cookie link */
.cookie-link {
    color: #333;
    text-decoration: none;
    padding: 5px 12px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.cookie-link:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #999;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.cookie-link:hover:after {
    transform: scaleX(1);
}

.cookie-link:hover {
    color: #999;
}

/* Social icons section */
.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Bordes redondos para Linktree */
.social-icon[aria-label="Linktree"] img {
    border-radius: 8px;
}

/* Tamaño específico para el icono de X para que sea igual al resto */
.social-icon[aria-label="X (Twitter)"] img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.social-icon:hover {
    transform: scale(1.1);
}

/* Contribution section */
.footer-contribution {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contribution-text {
    font-size: 0.95rem;
    color: #333;
    white-space: nowrap;
    font-weight: 500;
}

.contribution-logo {
    max-width: 130px;
    transition: transform 0.3s ease;
}

.contribution-logo:hover {
    transform: scale(1.05);
}

/* Credits section - subtle and elegant */
.footer-credits {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.credits-text {
    font-size: 0.8rem;
    color: #666;
    font-weight: 300;
}

.credits-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.credits-link:hover {
    color: #333;
}

.credits-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 50%;
    background-color: #666;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.credits-link:hover::after {
    width: 100%;
}

/* Responsive styles */
@media (max-width: 1280px) {
    .footer-container {
        justify-content: center;
    }
}

@media (max-width: 997px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-social {
        order: 2;
    }
    
    .footer-contribution {
        order: 3;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .footer-brand {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-brand-text {
        margin-right: 0;
    }
    
    .credits-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 568px) {
    .footer {
        padding: 1.5rem 3%;
        margin: 10px 3px 0 3px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 320px) {
    .cc-icons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer {
        padding: 1.5rem 3%;
        margin: 10px 3px 0 3px;
    }
    
    .credits-text {
        font-size: 0.7rem;
    }
}

/* Page Hero */
.page-hero {
    background-color: var(--light-background);
    padding: 4rem 0;
    text-align: center;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

/* About Content */
.about-content {
    padding: 4rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.content-main {
    max-width: 800px;
}

.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background-color: var(--light-background);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.support-card {
    background-color: var(--light-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.support-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Media Queries */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .content-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--background);
        padding: 2rem;
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-toggle {
        display: flex;
    }



    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .support-buttons {
        flex-direction: column;
    }
}

/* Add styles for featured article */
.featured-article {
    padding: 2rem 0;
    background-color: var(--light-background);
}

.featured-article-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.featured-article-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.featured-article-content h2 {
    margin-bottom: 1rem;
}

.featured-article-content h2 a {
    color: var(--text-color);
    text-decoration: none;
}

.featured-article-content h2 a:hover {
    color: var(--primary-color);
}

.featured-article-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Article page styles */
.article-hero {
    background-color: var(--light-background);
    padding: 3rem 0;
    text-align: center;
}

.article-hero-content h1 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--light-text);
}

.article-image-full {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.article-image-full img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.image-caption {
    text-align: center;
    color: var(--light-text);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.article-content-wrapper {
    padding: 2rem 0 4rem;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.article-content ul, .article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-image {
    margin: 2rem 0;
}

.article-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.article-contact {
    margin: 3rem 0;
    text-align: center;
}

.article-related {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.article-related h3 {
    margin-bottom: 1.5rem;
}

.related-articles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.related-article a {
    color: var(--text-color);
    text-decoration: none;
}

.related-article a:hover {
    color: var(--primary-color);
}

.related-article h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .featured-article-grid {
        grid-template-columns: 1fr;
    }
    
    .article-hero-content h1 {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .related-articles {
        grid-template-columns: 1fr;
    }
}

/* Header Loading States */
.loading, .error {
    padding: 20px;
    text-align: center;
    background-color: var(--light-background);
    border-radius: var(--border-radius);
    margin: 20px 0;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading {
    color: var(--primary-color);
}

.error {
    color: #dc2626;
    background-color: #fee2e2;
}

.internal-link {
    color: var(--secondary-color);
    text-decoration: underline;
}

.internal-link:hover {
    color: var(--primary-color);
}

.external-link {
    color: #38b6ff; /* azul claro */
    text-decoration: underline;
}

.external-link:hover {
    color: #2563eb;
}

.memoriam-figures {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 3vw;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.memoriam-figures figure {
    margin: 0;
    flex: 1 1 320px;
    display: flex;
    justify-content: center;
}

.memoriam-img {
    width: 100%;
    max-width: 455px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    object-fit: cover;
    background: #fff;
}

@media (max-width: 800px) {
    .memoriam-figures {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .memoriam-img {
        max-width: 90vw;
    }
}

.about-carousel {
    position: relative;
    max-width: 49vw;
    margin: 2.5rem auto 2.5rem auto;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    overflow: hidden;
    min-height: 520px;
    padding: 0;
}

.carousel-slide {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0;
    background: #fff;
    transition: opacity 0.5s;
}

.carousel-slide.active {
    display: flex;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.carousel-btn {
    background: rgba(255,255,255,0.92);
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
    color: #222;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    transition: background 0.2s, color 0.2s;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 0;
    line-height: 1;
}

.carousel-btn.prev {
    margin-left: 18px;
}
.carousel-btn.next {
    margin-right: 18px;
}

.about-carousel-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 0 auto 1rem auto;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    object-fit: cover;
    background: #f3f4f6;
    display: block;
}

.carousel-caption {
    text-align: center;
    color: #222;
    margin-bottom: 1.5rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
}

.carousel-dots button {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: none;
    background: #222;
    opacity: 0.25;
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
}

.carousel-dots button.active {
    background: #222;
    opacity: 0.85;
}

.about-bio {
    max-width: 49vw;
    margin:2.5rem auto 0 auto;
    font-size:1.08rem;
    line-height:1.7;
    padding: 0;
    text-align: left;
}

@media (max-width: 900px) {
    .about-carousel {
        height: 250px;
    }
    
    .about-carousel-img {
        height: 250px;
    }
    
    .about-bio {
        margin-top: 2rem;
    }
}

/* Social Sharing Section */
.social-sharing {
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 1.5rem 0;
    margin: 2rem 0;
}

.social-sharing-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-sharing-text {
    font-size: 0.9rem;
    color: var(--light-text);
    font-weight: 500;
    text-align: center;
}

.social-sharing-icons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.social-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    color: #64748b;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.social-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #cbd5e1;
}

.social-share-btn[data-platform="linkedin"]:hover {
    background-color: #0077b5;
    color: white;
    border-color: #0077b5;
}

.social-share-btn[data-platform="twitter"]:hover {
    background-color: #000000;
    color: white;
    border-color: #000000;
}

.social-share-btn[data-platform="reddit"]:hover {
    background-color: #ff4500;
    color: white;
    border-color: #ff4500;
}

.social-share-btn[data-platform="whatsapp"]:hover {
    background-color: #25d366;
    color: white;
    border-color: #25d366;
}

.social-share-btn[data-platform="bluesky"]:hover {
    background-color: #00bcd4;
    color: white;
    border-color: #00bcd4;
}

.social-share-btn[data-platform="telegram"]:hover {
    background-color: #0088cc;
    color: white;
    border-color: #0088cc;
}

.social-share-btn[data-platform="facebook"]:hover {
    background-color: #1877f2;
    color: white;
    border-color: #1877f2;
}

.social-share-btn[data-platform="copy"]:hover {
    background-color: #6366f1;
    color: white;
    border-color: #6366f1;
}

.social-share-btn svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

/* Responsive adjustments for social sharing */
@media (max-width: 768px) {
    .social-sharing {
        padding: 1rem 0;
        margin: 1.5rem 0;
    }
    
    .social-sharing-content {
        gap: 0.75rem;
    }
    
    .social-sharing-icons {
        gap: 0.5rem;
    }
    
    .social-share-btn {
        width: 36px;
        height: 36px;
    }
    
    .social-share-btn svg {
        width: 18px;
        height: 18px;
    }
}
