/* ============================================
   MURO DEL MISTERIO - CALLEDELEDMIEDO.COM
   Feed social tipo Facebook para WordPress
   ============================================ */

.feed-wrapper {
    max-width: 100%;
    background: #0a0a0a;
    min-height: 100vh;
    padding-top: 0;
}

/* Header del Feed */
.feed-header {
    text-align: center;
    padding: 40px 20px 20px;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    border-bottom: 1px solid #3e4042;
}

.feed-header h1 {
    color: #ff6b35;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.feed-header p {
    color: #b0b3b8;
    font-size: 1.1rem;
}

/* Menú Principal */
.feed-main-nav {
    display: flex;
    justify-content: center;
    background: #1a1a1a;
    border-bottom: 1px solid #3e4042;
    position: sticky;
    top: 0;
    z-index: 100;
}

.feed-nav-tab {
    padding: 16px 40px;
    background: none;
    border: none;
    color: #b0b3b8;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feed-nav-tab:hover {
    color: #e4e6eb;
    background: #3a3b3c;
}

.feed-nav-tab.active {
    color: #ff6b35;
}

.feed-nav-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30%;
    right: 30%;
    height: 3px;
    background: #ff6b35;
    border-radius: 2px;
}

/* Submenú Regiones */
.feed-sub-nav-container {
    background: #0a0a0a;
    padding: 15px 0;
    border-bottom: 1px solid #3e4042;
    position: sticky;
    top: 58px;
    z-index: 99;
}

.feed-sub-nav {
    display: flex;
    gap: 10px;
    padding: 0 20px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    max-width: 1200px;
    margin: 0 auto;
}

.feed-sub-nav::-webkit-scrollbar {
    display: none;
}

.feed-region-chip {
    padding: 8px 16px;
    background: #242526;
    border: 1px solid #3e4042;
    border-radius: 20px;
    color: #b0b3b8;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feed-region-chip:hover {
    background: #3a3b3c;
    color: #e4e6eb;
}

.feed-region-chip.active {
    background: #4a90e2;
    color: white;
    border-color: #4a90e2;
}

/* Contenedor del Feed */
.feed-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 20px 16px 40px;
}

/* Tarjetas de Post */
.feed-post-card {
    background: #242526;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.5);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #3e4042;
}

.feed-post-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.feed-post-header {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feed-post-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #4a90e2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feed-post-meta {
    flex: 1;
}

.feed-post-title {
    font-weight: 600;
    color: #e4e6eb;
    font-size: 0.95rem;
    line-height: 1.3;
}

.feed-post-info {
    font-size: 0.8rem;
    color: #b0b3b8;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.feed-post-badge {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Imagen del Post */
.feed-post-image-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    cursor: pointer;
}

.feed-post-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feed-post-card:hover .feed-post-image {
    transform: scale(1.02);
}

.feed-post-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.8));
    pointer-events: none;
}

/* Contenido */
.feed-post-content {
    padding: 16px;
}

.feed-post-excerpt {
    color: #b0b3b8;
    font-size: 0.95rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feed-post-excerpt.expanded {
    -webkit-line-clamp: unset;
    display: block;
}

.feed-post-full {
    display: none;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #3e4042;
    animation: feedFadeIn 0.3s ease;
}

.feed-post-full.show {
    display: block;
}

@keyframes feedFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.feed-post-full-text {
    color: #b0b3b8;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.feed-post-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 8px;
    margin-top: 16px;
}

.feed-gallery-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.feed-gallery-image:hover {
    transform: scale(1.05);
}

/* Botón Leer Más */
.feed-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid #3e4042;
    border-radius: 6px;
    color: #4a90e2;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feed-read-more:hover {
    background: rgba(74, 144, 226, 0.1);
    border-color: #4a90e2;
}

.feed-read-more .arrow {
    transition: transform 0.3s ease;
}

.feed-read-more.expanded .arrow {
    transform: rotate(180deg);
}

/* Acciones */
.feed-post-actions {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-top: 1px solid #3e4042;
    gap: 20px;
}

.feed-action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: #b0b3b8;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 6px;
}

.feed-action-btn:hover {
    color: #ff6b35;
    transform: scale(1.05);
}

.feed-action-btn svg {
    width: 20px;
    height: 20px;
}

.feed-action-btn.liked {
    color: #ff6b35;
}

.feed-action-btn.liked svg {
    fill: currentColor;
}

/* Responsive */
@media (max-width: 768px) {
    .feed-header h1 {
        font-size: 1.8rem;
    }
    
    .feed-nav-tab {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .feed-container {
        padding: 15px 12px 40px;
    }
    
    .feed-sub-nav {
        padding: 0 12px;
    }
}

/* Ocultar header de Astra en esta página */
.page-template-page-misterio .site-header {
    display: none;
}
/* ============================================
   COMENTARIOS Y COMPARTIR
   ============================================ */

/* Sección de comentarios */
.feed-comments-section {
    background: #1a1a1a;
    border-top: 1px solid #3e4042;
    padding: 16px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.feed-comments-list {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 16px;
}

.feed-no-comments {
    color: #65676b;
    text-align: center;
    font-style: italic;
    padding: 20px;
}

.feed-comment {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    padding: 12px;
    background: #242526;
    border-radius: 8px;
}

.feed-comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #3a3b3c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.feed-comment-content {
    flex: 1;
}

.feed-comment-author {
    font-weight: 600;
    color: #ff6b35;
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.feed-comment-text {
    color: #e4e6eb;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 4px;
}

.feed-comment-time {
    color: #65676b;
    font-size: 0.75rem;
}

/* Formulario de comentarios */
.feed-comment-form {
    display: flex;
    gap: 10px;
}

/* ============================================
   CAMPO DE COMENTARIOS AMPLIADO - 3 LÍNEAS
   ============================================ */

.feed-comment-input {
    flex: 1;
    padding: 12px 16px;
    background: #242526;
    border: 1px solid #3e4042;
    border-radius: 12px;
    color: #e4e6eb;
    font-size: 0.95rem;
    line-height: 1.5;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    min-height: 72px; /* Altura para 3 líneas aprox */
    resize: vertical; /* Permitir redimensionar verticalmente */
    font-family: inherit;
}

.feed-comment-input:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

.feed-comment-input::placeholder {
    color: #65676b;
}

/* Formulario de comentarios ajustado */
.feed-comment-form {
    display: flex;
    gap: 12px;
    align-items: flex-start; /* Alinear arriba para textarea */
}

.feed-comment-submit {
    padding: 12px 20px;
    background: #4a90e2;
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 4px; /* Pequeño ajuste visual */
}

.feed-comment-submit:hover {
    background: #357abd;
}

/* ============================================
   MÓVIL - CAMPO DE COMENTARIOS
   ============================================ */

@media (max-width: 768px) {
    .feed-comment-input {
        min-height: 66px; /* Ligeramente menor en móvil */
        padding: 10px 14px;
        font-size: 16px; /* Prevenir zoom en iOS */
    }
    
    .feed-comment-submit {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .feed-comment-form {
        flex-direction: column; /* Apilar en pantallas muy pequeñas */
        gap: 10px;
    }
    
    .feed-comment-submit {
        width: 100%;
        margin-top: 0;
        padding: 12px;
    }
}
/* ============================================
   MODAL DE COMPARTIR
   ============================================ */

.feed-share-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feed-share-modal.show {
    opacity: 1;
    pointer-events: all;
}

.feed-share-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.feed-share-content {
    position: relative;
    background: #242526;
    border-radius: 16px;
    padding: 24px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.feed-share-modal.show .feed-share-content {
    transform: scale(1);
}

.feed-share-content h3 {
    color: #e4e6eb;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.feed-share-title {
    color: #b0b3b8;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.feed-share-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.feed-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
}

.feed-share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.feed-share-btn.whatsapp {
    background: #25d366;
}

.feed-share-btn.facebook {
    background: #1877f2;
}

.feed-share-btn.twitter {
    background: #1da1f2;
}

.feed-share-btn.copy {
    background: #6c757d;
    grid-column: span 2;
}

.feed-share-close {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid #3e4042;
    border-radius: 8px;
    color: #b0b3b8;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
}

.feed-share-close:hover {
    background: #3a3b3c;
    color: #e4e6eb;
}

/* Scrollbar personalizada para comentarios */
.feed-comments-list::-webkit-scrollbar {
    width: 6px;
}

.feed-comments-list::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 3px;
}

.feed-comments-list::-webkit-scrollbar-thumb {
    background: #3e4042;
    border-radius: 3px;
}

.feed-comments-list::-webkit-scrollbar-thumb:hover {
    background: #4a90e2;
}

.feed-nav-tab svg,
.feed-region-chip svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
    flex-shrink: 0;
}

.feed-nav-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.feed-region-chip {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Contenedor del Feed - CENTRADO */
.feed-container {
    max-width: 680px;
    margin: 0 auto; /* Esto lo centra horizontalmente */
    padding: 20px 16px 40px;
    width: 100%; /* Asegura que ocupe el ancho disponible en móviles */
    box-sizing: border-box;
}

/* Wrapper principal - asegurar ancho completo */
.feed-wrapper {
    max-width: 100%;
    background: #0a0a0a;
    min-height: 100vh;
    padding-top: 0;
    width: 100%;
}

/* Si Astra tiene container con ancho fijo, forzar centrado */
.site-content .feed-wrapper,
.entry-content .feed-wrapper {
    width: 100%;
    max-width: 100%;
}

/* Asegurar que el contenedor del feed no herede alineación izquierda de Astra */
#feed {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra las tarjetas horizontalmente */
}

/* Tarjetas de post - ancho completo dentro del contenedor centrado */
.feed-post-card {
    background: #242526;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.5);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #3e4042;
    width: 100%; /* Ocupa todo el ancho del contenedor */
    max-width: 680px; /* No excede el ancho máximo */
}

/* Excepto el contenido de las tarjetas que debe alinearse a la izquierda */
.feed-post-content,
.feed-post-header,
.feed-post-actions,
.feed-post-full-text {
    text-align: left;
}

/* Submenú Regiones - asegurar que muestre todos los botones */
.feed-sub-nav-container {
    background: #0a0a0a;
    padding: 15px 0;
    border-bottom: 1px solid #3e4042;
    position: sticky;
    top: 58px;
    z-index: 99;
    width: 100%;
    overflow: visible; /* Cambiar de hidden a visible */
}

.feed-sub-nav {
    display: flex;
    gap: 10px;
    padding: 0 20px;
    overflow-x: auto; /* Scroll horizontal si no cabe */
    scrollbar-width: none;
    -ms-overflow-style: none;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    max-width: 1200px;
    margin: 0 auto; /* Centrar el contenedor */
    justify-content: center; /* Centrar botones si hay espacio */
    flex-wrap: wrap; /* Permitir que bajen si no caben */
}

/* En móvil: scroll horizontal, en desktop: wrap */
@media (max-width: 768px) {
    .feed-sub-nav {
        flex-wrap: nowrap; /* En móvil sí hacer scroll */
        justify-content: flex-start;
        padding: 0 12px;
    }
    
    .feed-sub-nav-container {
        overflow-x: auto; /* Scroll en móvil */
    }
}

/* Asegurar que el último botón sea visible */
.feed-region-chip:last-child {
    margin-right: 20px; /* Margen derecho para no quedar pegado */
}

.feed-region-chip {
    padding: 8px 16px;
    background: #242526;
    border: 1px solid #3e4042;
    border-radius: 20px;
    color: #b0b3b8;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Añadir a tu feed-styles.css */

/* ============================================
   HEADER TIPO APP - LOGO + TEXLO HORIZONTAL
   ============================================ */

.feed-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 24px;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    border-bottom: 1px solid #3e4042;
    text-align: left;
}

.feed-home-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    min-width: 50px; /* Prevenir que se encoja */
    min-height: 50px;
    border-radius: 12px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
    overflow: hidden; /* Importante: ocultar desbordamiento */
}

.feed-home-link img {
    width: 100% !important; /* Forzar ancho al 100% del contenedor */
    height: 100% !important; /* Forzar alto al 100% del contenedor */
    max-width: 36px; /* Máximo dentro del padding */
    max-height: 36px;
    object-fit: contain;
    filter: brightness(0.95);
    transition: all 0.3s ease;
    display: block; /* Eliminar espacio fantasma de imagen */
}

.feed-home-link:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
    transform: scale(1.05);
}

.feed-home-link:hover img {
    filter: brightness(1.1);
}

.feed-header-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0; /* Importante para que el texto se ajuste */
    flex: 1; /* Ocupar espacio restante */
}

.feed-header h1 {
    color: #ff6b35;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap; /* Evitar que el título se parta */
    overflow: hidden;
    text-overflow: ellipsis; /* Puntos suspensivos si no cabe */
}

.feed-header p {
    color: #b0b3b8;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ============================================
   MÓVIL - HEADER COMPACTO
   ============================================ */

@media (max-width: 768px) {
    .feed-header {
        padding: 16px;
        gap: 12px;
    }
    
    .feed-home-link {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        border-radius: 10px;
    }
    
    .feed-home-link img {
        max-width: 32px;
        max-height: 32px;
    }
    
    .feed-header h1 {
        font-size: 1.25rem;
    }
    
    .feed-header p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .feed-header {
        padding: 14px 12px;
        gap: 10px;
    }
    
    .feed-home-link {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        border-radius: 8px;
    }
    
    .feed-home-link img {
        max-width: 28px;
        max-height: 28px;
    }
    
    .feed-header h1 {
        font-size: 1.1rem;
    }
    
    .feed-header p {
        font-size: 0.75rem;
    }
}

@media (max-width: 360px) {
    .feed-header h1 {
        font-size: 1rem;
    }
    
    .feed-header p {
        font-size: 0.7rem;
    }
}

/* ============================================
   FOOTER MINIMALISTA - MURO DEL MISTERIO
   ============================================ */

.feed-footer {
    max-width: 680px;
    margin: 40px auto 0;
    padding: 30px 20px;
    border-top: 1px solid #3e4042;
    text-align: center;
}

.feed-footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.feed-footer:hover .feed-footer-brand {
    opacity: 1;
}

.feed-footer-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.2);
}

.feed-footer-name {
    color: #ff6b35;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.feed-footer-tagline {
    color: #65676b;
    font-size: 0.8rem;
    margin-bottom: 20px;
    font-style: italic;
}

.feed-footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.feed-footer-links a {
    color: #b0b3b8;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s ease;
    position: relative;
}

.feed-footer-links a:hover {
    color: #ff6b35;
}

.feed-footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ff6b35;
    transition: width 0.2s ease;
}

.feed-footer-links a:hover::after {
    width: 100%;
}

.feed-footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.feed-footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #242526;
    border: 1px solid #3e4042;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0b3b8;
    transition: all 0.2s ease;
}

.feed-footer-social a:hover {
    background: #ff6b35;
    border-color: #ff6b35;
    color: #fff;
    transform: translateY(-2px);
}

.feed-footer-social svg {
    width: 18px;
    height: 18px;
}

.feed-footer-copy {
    color: #65676b;
    font-size: 0.75rem;
}

.feed-footer-copy span {
    color: #4a90e2;
}

/* ============================================
   MÓVIL - FOOTER
   ============================================ */

@media (max-width: 768px) {
    .feed-footer {
        margin-top: 30px;
        padding: 24px 16px;
    }
    
    .feed-footer-links {
        gap: 16px;
    }
    
    .feed-footer-links a {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .feed-footer-links {
        flex-direction: column;
        gap: 12px;
    }
    
    .feed-footer-social {
        gap: 12px;
    }
    
    .feed-footer-social a {
        width: 32px;
        height: 32px;
    }
}