html,body 
{
    font-family:"Roboto,-apple-system,BlinkMacSystemFont","Segoe UI","Roboto","Oxygen-Sans","Ubuntu","Cantarell","Helvetica Neue",sans-serif;
    font-size: 14px;
    line-height: 1.43rem;
    color: rgba(0,0,0,0.87);
    background: rgb(245, 245, 245);;
}
.pkp_block .title {
    display: block;
    margin-bottom: 10px;
    font-family: "Montserrat",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen-Sans","Ubuntu","Cantarell","Helvetica Neue",sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    color:  rgba(0,0,0,0.54);
}

.block_make_submission_link{
    width: 100%;
    text-align: center;
}

a
{
    font-family: "Montserrat",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen-Sans","Ubuntu","Cantarell","Helvetica Neue",sans-serif;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.43rem;
    color: #8b8b8b;  
}

/* PIE */
.pkp_footer_content {
    padding: 0px 10px 0px;
    text-align: center;
}

.pkp_brand_footer
{
    display:none !important;
}

/* boton lateral */
.buttone{
    background: #7f8c8d;
    color: rgb(245, 245, 245);
    display: inline-block;
    margin: 2px;
    padding: 8px 8px 8px;
    text-align: left;
    width:100%;
    text-decoration:none;
    box-shadow: 0px 1px 0px #8d9797;
}

.buttone span{
    margin: 100px;
}

.buttone.blanco{
    background: rgb(250, 250, 250);
    color: rgb(13, 1, 48);
    box-shadow: 0px 3px 0px #373c3c;
} 

/* Listado de Indexaciones */
.revista {
	border-bottom-width: thin;
	border-bottom-style: dotted;
	border-bottom-color: #666;
	padding: 1em 0 1em 0;
	clear: both;
	overflow-y:auto;
	overflow-x:hidden;
}
.revcover {
	float:left;
	width: 15%;
	margin: 0 4% 0 0;	
}
a.homepageImage img{
    width: 100%;
    height: auto;
}
.inforev {
	width: 70%;
	float:left;
}
.inforev h3{
	padding:0;
	font-size: 1.2em;
}
.inforev p {
	margin: 1em 0 0 0;
	padding:0;
	font-size: 1em;
}

img {
    max-width: 40%;
    width: 40%;
    height: auto;
}

.pkp_page_journal img {
    width: 40%;
}


/* ------------------------------------------------- */
/* Grid de dos columnas idexaciones calidad */
.index-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 10px;
  align-items: center;
  justify-items: center;
}

/* Logos */
.index-logo {
  max-width: 90px;
  height: auto;

  /* Blanco y negro por defecto */
  filter: grayscale(100%);
  opacity: 0.75;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

/* Al pasar el cursor → color */
.index-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* En móviles pasa a una columna */
@media (max-width: 480px) {
  .index-grid {
    grid-template-columns: 1fr;
  }
}