.abg-wrapper,
.abg-wrapper * {
  box-sizing: border-box;
  font-family: 'Sofia Pro', sans-serif;
}

.abg-wrapper {
  width: 100%;
}

/* Grid: columns are set inline per-widget via data-columns, gap fixed at 15px */
.abg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.abg-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

/* Thumbnail: 432 x 432, radius 16px, opacity 1 */
.abg-thumb {
  width: 100%;
  height: 432px;
  border-radius: 16px;
  opacity: 1;
  background-color: #F5EBE0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* "X MIN READ" eyebrow */
.abg-eyebrow {
  margin-top: 16px;
  font-weight: 591;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 10%;
  text-transform: uppercase;
  color: #FFA51F;
}

/* Description / excerpt */
.abg-desc {
  margin-top: 8px;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: -2%;
  color: #601050;
}

.abg-more-wrap {
  text-align: center;
  margin-top: 40px;
}

.abg-more-btn {
  font-family: 'Sofia Pro', sans-serif;
  font-weight: 591;
  font-size: 16px;
  letter-spacing: 2%;
  text-transform: uppercase;
  color: #601050;
  background: transparent;
  border: 2px solid #601050;
  border-radius: 30px;
  padding: 14px 40px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.abg-more-btn:hover {
  background: #601050;
  color: #fff;
}

.abg-more-btn.abg-hidden {
  display: none;
}

.abg-more-btn.abg-loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 900px) {
  .abg-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .abg-thumb {
    height: 320px;
  }
}

@media (max-width: 560px) {
  .abg-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .abg-thumb {
    height: 280px;
  }
}
