/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
    body .header__navigation-toggle svg, body .menu-arrow svg {
        fill: #00326D;
        display: none;
    }

.footer--site-page {
      display: none; 
  
}


<style>
/* CONTENEDOR GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

/* TARJETA PARTIDO */
.match {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #ffffff;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}

.match:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* BLOQUE FECHA */
.datebox {
  min-width: 85px;
  text-align: center;
  background: linear-gradient(135deg, #0F4761, #11698e);
  color: white;
  border-radius: 10px;
  padding: 8px 6px;
}

.d1 {
  font-size: 12px;
  opacity: 0.9;
}

.d2 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 4px;
}

/* INFO GENERAL */
.info {
  flex: 1;
}

/* EQUIPOS */
.teams {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

/* META */
.meta {
  font-size: 13px;
  color: #6b7280;
}

/* HIGHLIGHT (ej: Argentina) */
.match.highlight {
  border: 2px solid #0F4761;
  background: #f0f7fa;
}
</style>