
/* assets/css/styles.css */
#special-offers-root { padding-top: 20px; }
#special-offers-root h2 {
  margin: 20px 18px;
  color:#927942;
  font-family:'Roboto', sans-serif !important
}
.offer-card { border: 1px solid #ddd; box-shadow: 0 4px 8px rgba(0,0,0,0.05); background: #fff; border-radius: 6px; overflow: hidden; height: 100%; display: flex; flex-direction: column; margin-bottom: 30px;}
.offer-card img { width: 100%; height: 200px; object-fit: cover; }
.offer-body { padding: 15px; flex: 1 1 auto; display: flex; flex-direction: column; }
.offer-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.offer-description { color: #555; margin-bottom: 12px; flex: 1 1 auto; }
.offer-highlight { font-weight: 700; }
.offerBt { background:#333; color:#fff; padding:10px 18px; text-decoration:none; display:inline-block; border-radius:4px; margin-top: 12px; text-transform:uppercase; }
.offerDesc h2 {
  margin-bottom: 10px;
}
.offerDesc p {
  line-height: 30px !important;
}
.offerPeriod{white-space:nowrap;font-size:13px;}
.ctws-offer-dt {
  max-height: 324px;
}
.offer-card img {
  object-fit: contain;
}
#special-offers-root h2 {
    font-size: 1.429em; /* Section Title */
    font-weight: 400;
    text-align: left;
    margin-bottom: 25px;
}

.offer-card {
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.offer-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.offer-card-body {
    padding: 20px;
}

.offer-title {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 14px;
    line-height: 1.4;
}

.offer-meta {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

.offer-meta strong {
    color: #000;
}

.offer-card .view-offer-btn {
    display: inline-block;
    margin-top: 18px;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    background: #111;
    color: #fff;
    text-decoration: none;
    transition: 0.25s;
}

.offer-card .view-offer-btn:hover {
    background:#000;
    transform: translateY(-2px);
}

/* ✅ Mobile Responsive Tweaks */
@media (max-width: 767px) {
    .offer-title {
        font-size: 16px;
    }

    .offer-meta {
        font-size: 13px;
    }

    .offer-card img {
        height: 200px;
    }
}