/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 08 2026 | 12:27:44 */
.apuestas-query .wp-block-post-template {
  display: grid;
  gap: 28px;
}


.bet-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.25s;
}

.bet-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}


.bet-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.bet-card__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.bet-card__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}


.bet-card__excerpt {
  color: #666;
  margin-bottom: 18px;
  line-height: 1.5;
}


.bet-card__btn .wp-block-button__link {
  background: #111;
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.bet-card__btn .wp-block-button__link:hover {
  background: #2d6cdf;
}


@media (max-width: 800px) {
  .bet-card {
    grid-template-columns: 1fr;
  }

  .bet-card__img img {
    height: 200px;
  }
}

.wp-singular .attachment-post-thumbnail {
	max-width: 100%;
}

.ultimos-articulos {
    padding: 60px 20px;
}

.ultimos-articulos__titulo {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #111;
}

.ultimos-articulos__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}


.ultimos-articulos__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

/* обычные карточки (2 в ряд) */
.articulo-card {
    width: calc(50% - 12px);
    display: flex;
    flex-direction: column;
}

/* 🌟 последняя карточка — на всю ширину */
.articulo-card:last-child {
    width: 100%;
}

/* (опционально) чуть усилить визуальный акцент */
.articulo-card:last-child {
    border: 2px solid rgba(0,0,0,0.08);
    transform: none;
}

.articulo-card {
    display: flex;
    flex-direction: column;
    width: calc(50% - 12px);
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.articulo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.articulo-card__imagen img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.articulo-card__contenido {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.articulo-card__titulo {
    font-size: 24px;
    margin-bottom: 14px;
    line-height: 1.3;
}

.articulo-card__titulo a {
    color: #111;
    text-decoration: none;
}

.articulo-card__titulo a:hover {
    color: #e63946;
}

.articulo-card__excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.articulo-card__boton {
    align-self: flex-start;
    background: #111;
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    transition: background .3s ease;
}

.articulo-card__boton:hover {
    background: #e63946;
}

@media (max-width: 768px) {
    .articulo-card {
        width: 100%;
    }

    .ultimos-articulos__titulo {
        font-size: 28px;
    }

    .articulo-card__titulo {
        font-size: 20px;
    }
}