/* Contenedor principal */
.site-content {
    background-color: #ffffff;
}    
    
.empresa-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Montserrat, sans-serif;
    background-color: #ffffff;
}

/* Botón de regreso */
.empresa-back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #1D3B6C;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

.empresa-back-link:hover {
    text-decoration: underline;
}

/* Encabezado de Información y Logo con borde */
.empresa-header {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: #F4F7FA;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
.title-badge-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.membership-badge {
    width: 50px;
    height: auto;
    vertical-align: middle;
}
.empresa-info {
    flex: 2;
}

.empresa-info h1 {
    font-size: 32px;
    color: #1D3B6C;
    margin-bottom: 10px;
	margin-top: 10px;
}

.empresa-info p {
    font-size: 16px;
    color: #4D4D4D;
    margin: 5px 0;
}

.empresa-info p strong {
    color: #1D3B6C;
}

.empresa-info a {
    color: #1D3B6C;
    text-decoration: none;
}

.empresa-info a:hover {
    text-decoration: underline;
}

.empresa-logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.empresa-logo img {
    width: 250px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* Ajuste del tamaño de los íconos */
.empresa-info .icono {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 5px;
}
/* Redes Sociales */
.redes-sociales {
    display: flex;
    gap: 15px;
    align-items: center;
}

.redes-sociales a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.redes-sociales img {
    width: 28px;
    height: 28px;
    vertical-align: middle;
}

.redes-sociales a:hover {
    transform: translateY(-2px);
}

.d-flex{
	display: flex;
	gap: .5rem;
}

.align-center{
	align-content: center;
}

.btn {
    margin: .5rem 0;
    padding: 0.5rem 1rem;
    border-radius: 32px;
    cursor: pointer;
    font-size: 0.875rem;
}

.btn-outline {
    border: 1px solid #192EEC;
    color: #192EEC;
    background: white;
}

/* Contenedor de Descripción y Sidebar */
.empresa-content-wrapper {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.empresa-content {
    flex: 2;
}

.empresa-content h2 {
    font-size: 24px;
    color: #1D3B6C;
    margin-bottom: 10px;
}

.empresa-description {
    font-size: 16px;
    color: #4D4D4D;
    line-height: 1.6;
}

.sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.empresa-categorias h3, .empresa-location h3 {
    font-size: 18px;
    color: #032A53;
    margin-bottom: 10px;
}

.empresa-category {
    display: inline-block;
    background-color: #032A53;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 18px;
    margin-right: 5px;
    font-size: 14px;
	text-transform: capitalize;
	margin: 2px;
}

/* Estilos para el Mapa */
.empresa-map iframe {
    width: 100%;
    height: 250px;
    border: 0;
    border-radius: 10px;
}

/* Sección de Sponsored Posts y Featured Videos */
.related-posts {
    margin-top: 40px;
}

.related-posts h2 {
    font-size: 24px;
    color: #032A53;
    margin-bottom: 20px;
}

.related-posts-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columnas iguales */
    gap: 20px;
}

.related-post-item {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.related-post-item:hover {
    transform: translateY(-5px);
}

.related-post-thumbnail img {
    width: 100%;
    height: 180px;
    object-fit: fill;
}

.related-post-category {
    background-color: #032A53;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 18px;
    font-size: 12px;
    display: inline-block;
    margin: 10px;
	text-transform: capitalize;
}

.related-post-content {
    padding: 10px;
	margin-top: -10px;
}

.related-post-item h3 {
    font-size: 18px;
    color: #032A53;
    margin-bottom: 10px;
}

.related-post-meta {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #6c757d;
}

.related-post-meta img {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-right: 8px;
}

/* Estilos para la galería */
.image-gallery {
    margin-top: 40px;
}

.image-gallery h2 {
    font-size: 24px;
    color: #032A53;
    margin-bottom: 20px;
}

/* Ajustes del carrusel */
.carousel-item img {
    border-radius: 10px;
    margin: 0 auto;
	height: 200px;
}

/* Flechas de navegación */
.slick-prev:before, 
.slick-next:before {
    color: #032A53 !important;
    font-size: 30px !important;
}

.slick-prev {
    left: -35px !important;
}

.slick-next {
    right: -35px !important;
}

/* Estilos Responsivos */
@media (max-width: 768px) {
    .empresa-header, .empresa-content-wrapper {
        flex-direction: column;
    }
    .related-posts-list {
        grid-template-columns: 1fr;
    }
    .related-post-item {
        min-width: 100%;
    }
	 .redes-sociales {
        gap: 10px;
    }
    
    .redes-sociales img {
        width: 24px;
        height: 24px;
    }
    
    .slick-prev {
        left: -10px !important;
    }
    
    .slick-next {
        right: -10px !important;
    }
}

.rel-news-art{
    display: none;
}
