/**
 * Reklameboks i kategori-grid – harmoniseret med forsidens hero-kort
 */

.woocommerce ul.products li.sk-ad-slot,
.site .woocommerce ul.products li.sk-ad-slot {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  align-self: stretch;
  border: 1px solid #e5e7eb;
  border-radius: 0;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.woocommerce ul.products li.sk-ad-slot:hover,
.site .woocommerce ul.products li.sk-ad-slot:hover {
  transform: translateY(-2px);
  border-color: #d1d5db;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.12);
}

.sk-ad-slot__link {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  color: #574833;
}

.sk-ad-slot__img-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sk-ad-slot__img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 10px;
  box-sizing: border-box;
  display: block;
  transition: transform 0.3s ease, opacity 0.25s ease;
}

.sk-ad-slot__link:hover .sk-ad-slot__img {
  transform: scale(1.01);
  opacity: 0.96;
}

.sk-ad-slot__content {
  display: grid;
  grid-template-rows: minmax(calc(1.28em * 2), auto) minmax(calc(1.32em * 2), auto);
  align-content: start;
  gap: 0.4rem;
  padding: 12px 14px;
  border-top: 1px solid #e5e7eb;
}

.sk-ad-slot__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.28;
  text-align: left;
  text-transform: none;
  letter-spacing: 0;
  color: #111111;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sk-ad-slot__text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.32;
  text-align: left;
  color: #5f6368;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sk-ad-slot__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 13px;
  border-top: 1px solid #e5e7eb;
  background: #111111;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 600;
  text-align: center;
}

.sk-ad-slot__link:hover .sk-ad-slot__cta {
  background: #000000;
  color: #ffffff;
}

@media (max-width: 1200px) {
  .sk-ad-slot__img-wrap {
    height: 220px;
  }
}

@media (max-width: 921px) {
  .sk-ad-slot__img-wrap {
    height: 200px;
  }
}

@media (max-width: 544px) {
  .woocommerce ul.products li.sk-ad-slot,
  .site .woocommerce ul.products li.sk-ad-slot {
    border-radius: 0;
  }

  .sk-ad-slot__content {
    padding: 10px 12px;
  }

  .sk-ad-slot__img-wrap {
    height: 180px;
  }
}
