/* Contenedor central */
.custom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Layout con sidebar */
.custom-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

/* Art¨ªculo principal */
.custom-article {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
    font-family: 'Poppins', sans-serif;
}

/* Imagen destacada */
.custom-featured img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}

/* Meta de la entrada */
.custom-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
}

.custom-meta span {
    background: #f0f4f8;
    padding: 5px 12px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.custom-meta span:hover {
    background: #0073aa;
    color: #fff;
}

/* Contenido */
.custom-content {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Compartir en redes */
.custom-share {
    margin: 30px 0;
}

.custom-share p {
    font-weight: bold;
    margin-bottom: 10px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    margin-right: 10px;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.share-btn.facebook { background: #4267B2; }
.share-btn.facebook:hover { background: #2d4a8c; }

.share-btn.twitter { background: #1DA1F2; }
.share-btn.twitter:hover { background: #0d8ddb; }

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

.share-btn.whatsapp { background: #25D366; }
.share-btn.whatsapp:hover { background: #1ebe57; }


/* Sidebar */
.custom-sidebar {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.custom-sidebar h3 {
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 5px;
}

.custom-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-sidebar li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.custom-sidebar img {
    border-radius: 10px;
    margin-right: 10px;
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.custom-meta i {
    color: #0073aa;
    margin-right: 5px;
}

/* Responsive */
@media(max-width: 900px) {
    .custom-main {
        grid-template-columns: 1fr;
    }

    .custom-sidebar {
        margin-top: 30px;
    }
}

.custom-comments .custom-login-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}
