/* ========================================
   RESET Y BASE
   ======================================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #333;
	background-color: #f8f9fa;
}

a {
	text-decoration: none;
	color: inherit;
	transition: color 0.3s ease;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* ========================================
   HEADER PRINCIPAL - Responsive
   ======================================== */
.header-principal {
	background-color: #ffffff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 0;
}

.header-principal .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 80px;
}

/* Logo */
.logo-portal {
	flex-shrink: 0;
}

.logo-portal img {
	height: 60px;
	width: auto;
}

/* Menú principal */
.menu-principal {
	display: flex;
	align-items: center;
	gap: 15px;
	flex-grow: 1;
	justify-content: flex-end;
}

.menu-principal ul {
	list-style: none;
	display: flex;
	gap: 5px;
	margin: 0;
	padding: 0;
	align-items: center;
}

.menu-principal li {
	margin: 0;
	padding: 0;
}

.menu-principal a {
	display: block;
	padding: 10px 18px;
	color: #444;
	font-weight: 500;
	font-size: 15px;
	border-radius: 6px;
	transition: all 0.3s ease;
}

.menu-principal a:hover,
.menu-principal a:focus {
	background-color: #f0f0f0;
	color: #a82626;
}

.menu-principal a.is-active {
	color: #a82626;
	background-color: #fff5f5;
}

/* Buscador del header */
.header-search {
	display: flex;
	align-items: center;
	margin-left: 15px;
}

.header-search form {
	display: flex;
	align-items: center;
	gap: 5px;
}

.header-search input[type="search"],
.header-search input[type="text"] {
	padding: 8px 14px;
	border: 1px solid #ddd;
	border-radius: 20px;
	font-size: 14px;
	width: 200px;
	transition: all 0.3s ease;
	background-color: #f8f9fa;
}

.header-search input[type="search"]:focus,
.header-search input[type="text"]:focus {
	outline: none;
	border-color: #a82626;
	background-color: #fff;
	width: 240px;
}

.header-search button {
	background-color: #a82626;
	color: white;
	border: none;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.header-search button:hover {
	background-color: #8a1f1f;
}

/* Botón hamburguesa (móvil) */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	margin-left: 15px;
	flex-direction: column;
	gap: 4px;
	z-index: 1001;
}

.menu-toggle span {
	display: block;
	width: 25px;
	height: 3px;
	background-color: #333;
	border-radius: 3px;
	transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   RESPONSIVE - Móvil
   ======================================== */
@media (max-width: 768px) {
	.header-principal .container {
		flex-wrap: wrap;
		min-height: 60px;
		padding: 10px 20px;
	}

	.logo-portal img {
		height: 45px;
	}

	.menu-toggle {
		display: flex;
	}

	.menu-principal {
		order: 3;
		width: 100%;
		flex-direction: column;
		align-items: stretch;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
		gap: 0;
	}

	.menu-principal.active {
		max-height: 500px;
		padding: 15px 0;
	}

	.menu-principal ul {
		flex-direction: column;
		width: 100%;
		gap: 0;
	}

	.menu-principal li {
		width: 100%;
	}

	.menu-principal a {
		padding: 12px 15px;
		border-radius: 0;
		border-bottom: 1px solid #f0f0f0;
	}

	.header-search {
		order: 3;
		width: 100%;
		margin: 15px 0 0 0;
		padding-bottom: 15px;
	}

	.header-search form {
		width: 100%;
	}

	.header-search input[type="search"],
	.header-search input[type="text"] {
		flex-grow: 1;
		width: auto;
	}

	.header-search input[type="search"]:focus,
	.header-search input[type="text"]:focus {
		width: auto;
	}
}

/* ========================================
   BREADCRUMB - Mejorado
   ======================================== */
.breadcrumb {
	background-color: #ffffff;
	padding: 14px 0;
	border-bottom: 1px solid #e9ecef;
	font-size: 13px;
	margin-bottom: 0;
}

/* Ocultar título "Ruta de navegación" */
.breadcrumb h2 {
	display: none;
}

/* Lista horizontal */
.breadcrumb nav ol {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}

.breadcrumb nav ol li {
	display: flex;
	align-items: center;
	color: #6c757d;
	font-size: 13px;
}

/* Separador entre items */
.breadcrumb nav ol li:not(:last-child)::after {
	content: "›";
	margin-left: 8px;
	color: #adb5bd;
	font-size: 16px;
	font-weight: 300;
}

/* Enlaces */
.breadcrumb nav ol li a {
	color: #6c757d;
	transition: color 0.2s ease;
}

.breadcrumb nav ol li a:hover {
	color: #a82626;
}

/* Último item (actual) */
.breadcrumb nav ol li:last-child {
	color: #495057;
	font-weight: 500;
}

/* Responsive breadcrumb */
@media (max-width: 768px) {
	.breadcrumb {
		font-size: 12px;
		padding: 10px 0;
	}
	
	.breadcrumb nav ol {
		gap: 6px;
	}
	
	.breadcrumb nav ol li:not(:last-child)::after {
		margin-left: 6px;
	}
}

/* ========================================
   CONTENIDO PRINCIPAL
   ======================================== */
.main-container {
	/*padding: 40px 0;*/
	min-height: 50vh;
}

.container {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ========================================
   DETALLE ACTIVIDAD
   ======================================== */
.actividad-detalle {
	margin: 40px 0;
}

.actividad-imagen-principal {
	width: 100%;
	max-height: 500px;
	overflow: hidden;
	margin-bottom: 40px;
	border-radius: 8px;
}

.actividad-imagen-principal img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.actividad-titulo {
	font-size: 2.5rem;
	color: #a82626;
	margin-bottom: 30px;
	font-weight: bold;
}

.actividad-descripcion {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 30px;
	color: #444;
}

.actividad-info-box {
	background-color: #f8f9fa;
	border-left: 4px solid #a82626;
	padding: 25px;
	border-radius: 8px;
}

.actividad-info-box .info-item {
	margin-bottom: 25px;
}

.actividad-info-box .info-item:last-child {
	margin-bottom: 0;
}

.actividad-info-box h3 {
	font-size: 1rem;
	color: #a82626;
	margin-bottom: 8px;
	font-weight: 600;
}

.actividad-info-box p {
	margin: 0;
	color: #555;
	font-size: 0.95rem;
}

/* Botones */
.btn {
	display: inline-block;
	padding: 10px 25px;
	border-radius: 6px;
	font-weight: 500;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-size: 15px;
}

.btn-secondary {
	background-color: #6c757d;
	color: white;
}

.btn-secondary:hover {
	background-color: #5a6268;
}

.btn-primary {
	background-color: #a82626;
	color: white;
}

.btn-primary:hover {
	background-color: #8a1f1f;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
	background-color: #2c3e50;
	color: #ecf0f1;
	padding: 40px 20px 20px;
	margin-top: 60px;
}

.footer a {
	color: #ecf0f1;
}

.footer a:hover {
	color: #a82626;
}

.footer p {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	font-size: 14px;
	color: #95a5a6;
}

/* ========================================
   UTILIDADES
   ======================================== */
.clearfix::after {
	content: "";
	display: table;
	clear: both;
}

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

.mt-4 {
	margin-top: 2rem;
}

.mb-4 {
	margin-bottom: 2rem;
}

/* Ocultar etiquetas de Views */
.views-field-title label,
.views-label {
	display: none;
}



#block-sbaseaytoweb-site-branding img {
	filter: invert();
}




/*
--------------------- INTRO VIDEO HOME -----------------------------------------------------
*/



.home-slider {
	height: 55vw;
	position: relative;
	background-color: #ddd;
	overflow: hidden;
	text-align: center;
	align-items: center;
	justify-content: center;
	display: flex;
	margin-bottom: 15vh;
}

.home-video {
	width: 100%;
	height: 120%;
	position: absolute;
	left: 0;
	right: 0;
	z-index: 0;
}

.video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 10;
}

.video-content {
	position: relative;
	z-index: 99;
}

.video-logo {
	height: 40vw;
}




/*
--------------------- INTRO HOME -----------------------------------------------------
*/


.text-mid{
	font-size: 1.2rem;
	color: #2c3e50;
	line-height: 1.7;
}

h2 {
	color: #a82626;
}

.seccion-intro {
	min-height: 40vh;
}

.seccion-intro .intro-title {
	margin-bottom: 1em;
	font-size: 1.8rem;
}



.video-embed {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; /* 9/16 = 0.5625 */
	height: 0;
}

.video-embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*
--------------------- MAPA HOME -----------------------------------------------------
*/


.seccion-mapa {
	background-color: #e9ecef;
	padding-top: 15vh;
	padding-bottom: 15vh;
	margin-bottom: 5vh;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url('../images/castillo-monteagudo-bg.jpg');
}


.seccion-mapa .mapa-interactivo {

	text-align: center;
	align-items: center;
	justify-content: center;

}


.seccion-mapa #mapa-fortalezas {
	text-align: center;
	align-items: center;
	justify-content: center;
}


.seccion-mapa #mapa-fortalezas img {
	width: 80%;
	margin: 0 auto;
}

.seccion-mapa .puntos-clave .col {
	font-weight: bold;
}






.seccion-grid {
	min-height: 50vh;
	margin-bottom: 15vh;
}

.seccion-grid .grid-item:nth-child(1) img {
	height: 100%;
}

.seccion-grid .grid-item img {

	box-sizing: border-box;
	height: 70%;
}



.puntos-clave a{
	padding: 7px;
	border-radius: 5px;
	background-color: rgba(255, 255, 255, 0.5);
	padding-left: 15px;
	padding-right: 15px;
}












.seccion-actividades {
	min-height: 50vh;
	margin-bottom: 15vh;
}











.seccion-actualidad {
	min-height: 50vh;
	margin-bottom: 15vh;
}

.seccion-newsletter {
	min-height: 50vh;
	margin-bottom: 15vh;
}





#block-sbaseaytoweb-page-title {
	display: none !important;
}


.views-element-container{
	
}



.main-container>div>article{
	padding-top: 7vh;
	margin: 0 auto;
	max-width: 1600px;
}

.views-element-container{
	margin: 5vh auto;
	max-width: 1600px;
}

#block-fortalezas-block .views-view-responsive-grid__item{
	opacity: 0.9;
	transition: all linear 0.2s;
}




#block-views-block-enclaves-block-1{
	margin-top: 150px;
}

#block-views-block-enclaves-block-1 h2{
	padding-bottom: 25px;
}



.enclaves-principales .views-view-responsive-grid{
	gap: 25px;
}

.enclaves-principales .views-view-responsive-grid__item-inner{
	position: relative;
}

.enclaves-principales .views-field-field-imagen-principal img{
	border-radius: 7px;
	object-fit:cover;
	height: 260px;
	position: relative;
	z-index: 0;
	transition: transform 0.3s ease;
}

.enclaves-principales .views-field-field-imagen-principal img:hover{
	transform: scale(1.05);
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.enclaves-principales .views-field.views-field-title{
	position: absolute;
	bottom: 0;
	width: 100%;
	background-color: rgba(73, 4, 4, 0.7);
	color: #fff;
	z-index: 1;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	font-size: 0.9em;
	padding: 7px;
}

.enclaves-principales .views-field.views-field-title::before{
	content: " | ";
}









#block-views-block-enclaves-block-2{
	margin-top: 50px;
	padding-top: 150px;
}



#block-views-block-enclaves-block-2 h2{
	padding-bottom: 25px;
}


.enclaves-arqueologicos .views-view-responsive-grid__item{
	margin-bottom: 60px;
}

.enclaves-arqueologicos .views-view-responsive-grid__item-inner{
	position: relative;
}

.enclaves-arqueologicos .views-field-field-imagen-principal img{
	border-radius: 7px;
	object-fit:cover;
	object-position: center;
	height: 220px;
	position: relative;
	z-index: 0;
	transition: all ease-out 1.1s;
	background-color: #ddd;
}



.enclaves-arqueologicos .views-field.views-field-title{
	position: absolute;
	bottom: 0;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.8);
	color: #333;
	font-weight: 600;
	z-index: 1;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	font-size: 0.8em;
	padding: 7px;
	transition: all linear 0.2s;
}

.enclaves-arqueologicos .views-view-responsive-grid__item:hover .views-field.views-field-title{
	background-color: rgba(255, 255, 255, 0.9);
	color: #8a1f1f;
	
}

.enclaves-arqueologicos .views-view-responsive-grid__item:hover .views-field-field-imagen-principal img{
	object-position: top;
}



.enclaves-arqueologicos .views-field.views-field-title::before{
	content: " | ";
}














.fieldset-wrapper{}

.enclaves-arqueologicos .js-form-item-field-periodo-target-id{
	display: inline-block;
	padding: 7px;
	padding-left: 15px;
	padding-right: 15px;
	border-radius: 4px;
	background-color: #f5fdfd;
	font-size: 0.9em;
	border: 1px solid #c9dfdf;
}


.enclaves-arqueologicos  .views-exposed-form{
	margin-bottom: 25px;
}

.enclaves-arqueologicos  .views-exposed-form .fieldset-legend{
	display: none;
}

#block-fortalezas-block .views-field-title{
	font-weight: bold;
	padding: 1em;
	text-align: center;
}


#block-fortalezas-block .views-view-responsive-grid__item:hover{
	opacity: 1;
}



.enclaves-arqueologicos .views-field-field-periodo{
	position: absolute;
	top: 0;
	right: 0;
	z-index: 99;
	background-color: #503333af;
	color: #ebe6e6;
	font-size: 12px;
	border-bottom-left-radius: 5px;
	border-top-right-radius: 5px;
	text-align: center;
	min-width: 80px;
}





.enclave-detalle {}


.enclave-detalle .slider {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	height: 35vw;
	position: relative;
	background-color: #ddd;
	overflow: hidden;
	text-align: center;
	align-items: center;
	justify-content: center;
	display: flex;
	margin-bottom: 5vh;
}


.enclave-detalle .slider-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 10;
}

.enclave-detalle .slider-content {
	position: relative;
	z-index: 99;
}

.enclave-detalle .slider-logo {
	height: 40vw;
}

.enclave-detalle .slider-title {
	font-size: 5vw;
	color: #ffffff;
	position: relative;

	z-index: 99;
}


















.ficha-tecnica {
	margin-top: 30px;
  }
  
  .ficha-tecnica h3 {
	font-size: 1.2rem;
	color: #a82626;
	margin-bottom: 15px;
	font-weight: 600;
  }
  
  .ficha-tecnica table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.95rem;
  }
  
  .ficha-tecnica table th {
	text-align: left;
	padding: 12px 15px;
	background-color: #f8f9fa;
	font-weight: 600;
	color: #495057;
	border-bottom: 2px solid #e9ecef;
	width: 35%;
  }
  
  .ficha-tecnica table td {
	padding: 12px 15px;
	border-bottom: 1px solid #e9ecef;
	color: #666;
  }
  
  .ficha-tecnica table tr:last-child td,
  .ficha-tecnica table tr:last-child th {
	border-bottom: none;
  }



















.formulario-insripcion-actividad{
	width: 100%;
	height: 800px;
	background-color: transparent;
}









.page-title{
	margin-bottom: 5vh;
	text-align: center;
	color: #a82626;
}



.section-title{
	font-size: 2.2rem;
	margin-bottom: 15px;
	text-align: center;
	color: #a82626;
	font-family: 'Times New Roman', Times, serif;
}

.section-subtitle{
	font-size: 1.2rem;
	margin-bottom: 15px;
	text-align: center;
	color: #ffffff;
	font-family: 'Times New Roman', Times, serif;
	background-color: #a82626;
	margin: 0 auto;
	display: inline-block;
	padding-left: 20px;
	padding-right: 20px;
}


.subtitles{
	font-size: 1.8rem;
    color: #a82626;
    margin-bottom: 15px;
    font-weight: 600;
}

.genlist li{
	margin-left: 25px;
}



.pagesection{
	margin-bottom: 5vh;
}


.galery{
	position: relative;
	width: 100%;
	height: 21vw;
	overflow: hidden;
}


.galery img{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
}

























.seccion-grid {
    max-width: 1100px;
    margin: 0 auto;
  }



  /* Botón base */
  .btn-fortuna {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #fff;
    border: 1.5px solid #d4c8b8;
    border-radius: 6px;
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
    height: 100%;
  }

  .btn-fortuna:hover {
    border-color: #a82626;
    box-shadow: 0 4px 20px rgba(168, 38, 38, 0.1);
    transform: translateY(-3px);
  }

  .btn-fortuna:hover .btn-fortuna__icon svg {
    stroke: #a82626;
  }

  .btn-fortuna:hover .btn-fortuna__label {
    color: #a82626;
  }

  .btn-fortuna__icon {
    margin-bottom: 0.75rem;
  }

  .btn-fortuna__icon svg {
    width: 40px;
    height: 40px;
    stroke: #6b5b4e;
    stroke-width: 1.5;
    fill: none;
    transition: stroke 0.3s ease;
  }

  .btn-fortuna__label {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #2c2017;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    transition: color 0.3s ease;
  }

  /* Destacado grande */
  .btn-fortuna--hero {
    padding: 2.5rem 1.5rem;
    border-color: #a82626;
    background: linear-gradient(170deg, #fff 60%, #fdf8f4 100%);
  }

  .btn-fortuna--hero .btn-fortuna__icon svg {
    width: 64px;
    height: 64px;
    stroke: #a82626;
  }

  .btn-fortuna--hero .btn-fortuna__label {
    font-size: 1.15rem;
    color: #a82626;
  }

  .btn-fortuna--hero:hover {
    background: #a82626;
    border-color: #a82626;
  }

  .btn-fortuna--hero:hover .btn-fortuna__icon svg {
    stroke: #fff;
  }

  .btn-fortuna--hero:hover .btn-fortuna__label {
    color: #fff;
  }

  /* Columna del hero */
  .col-hero {
    margin-bottom: 1rem;
  }

  /* Columnas pequeñas */
  .col-small {
    margin-bottom: 1rem;
  }

  /* Responsive */
  @media (max-width: 767px) {
    .btn-fortuna--hero {
      padding: 1.5rem 1rem;
    }
    .btn-fortuna--hero .btn-fortuna__icon svg {
      width: 48px;
      height: 48px;
    }
  }





  .clear-space-2{
	height: 2vh;
  }


  .clear-space-5{
	height: 10vh;
  }

  .prounded{
	padding: 20px;
	border-radius: 15px;
	background-color: #FFFFFF;
	margin-bottom: 20px;
  }






.bloque-actividades .views-col{
	padding: 25px;
	padding-bottom: 45px;
}

.bloque-actividades .views-field-field-imagen-principal{
	
}


.bloque-actividades .views-field-field-imagen-principal img{
	border-radius: 7px;
	object-fit:cover;
	object-position: center;
	height: 220px;
	position: relative;
	z-index: 0;
	transition: all ease-out 1.1s;
	background-color: #ddd;
}


.views-field-field-fecha-actividad{
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 1px;
	padding-bottom: 1px;
	background-color: #eee;
	color: #8a1f1f;
	display: inline-block;
	border-radius: 4px;
	font-size: 0.8em;
	font-weight: 600;
}











.bloque-actualidad .views-col{
	padding: 25px;
	padding-bottom: 45px;
}

.bloque-actualidad .views-field-field-imagen-principal{
	
}


.bloque-actualidad .views-field-field-imagen-principal img{
	border-radius: 7px;
	object-fit:cover;
	object-position: center;
	height: 220px;
	position: relative;
	z-index: 0;
	transition: all ease-out 1.1s;
	background-color: #ddd;
}




.bloque-fortalezas .views-col{
	padding: 25px;
	padding-bottom: 45px;
}

.bloque-fortalezas .views-field-field-imagen-principal{
	
}


.bloque-fortalezas .views-field-field-imagen-principal img{
	border-radius: 7px;
	object-fit:cover;
	object-position: center;
	height: 220px;
	position: relative;
	z-index: 0;
	transition: all ease-out 1.1s;
	background-color: #ddd;
}
.bloque-fortalezas .views-col{
	padding: 25px;
	padding-bottom: 45px;
}









.pagina-fortalezas .views-col{
	padding: 25px;
	padding-bottom: 45px;
}

.pagina-fortalezas .views-field-field-imagen-principal{
	
}

.pagina-fortalezas .views-field-field-imagen-principal{
	
}


.pagina-fortalezas .views-field-field-imagen-principal img{
	border-radius: 7px;
	object-fit:cover;
	object-position: center;
	height: 220px;
	position: relative;
	z-index: 0;
	transition: all ease-out 1.1s;
	background-color: #ddd;
}




.pagina-actividades .views-view-responsive-grid__item{
	padding: 25px;
	padding-bottom: 45px;
}

.pagina-actividades .views-field-field-imagen-principal{
	
}


.pagina-actividades .views-field-field-imagen-principal img{
	border-radius: 7px;
	object-fit:cover;
	object-position: center;
	height: 220px;
	position: relative;
	z-index: 0;
	transition: all ease-out 1.1s;
	background-color: #ddd;
}


.views-field-field-fecha-actividad{
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 1px;
	padding-bottom: 1px;
	background-color: #eee;
	color: #8a1f1f;
	display: inline-block;
	border-radius: 4px;
	font-size: 0.8em;
	font-weight: 600;
}






.pagina-actualidad .views-view-responsive-grid__item{
	padding: 25px;
	padding-bottom: 45px;
}

.pagina-actualidad .views-field-field-imagen-principal{
	
}


.pagina-actualidad .views-field-field-imagen-principal img{
	border-radius: 7px;
	object-fit:cover;
	object-position: center;
	height: 220px;
	position: relative;
	z-index: 0;
	transition: all ease-out 1.1s;
	background-color: #ddd;
}

