/* ==============================
   PRICE INCREASES – CCF STYLE
   ============================== */

.thumbnail img {
  max-width: 100px !important;
}

ul li:before {
  display: none;
}

.increase {
  display: flex;
  align-items: start!important;
  justify-content: flex-start!important;
  gap: 30px;
  border-left: 0!important;
  border-bottom: 0!important;
  border-right: 0!important;
  padding: 25px 0!important;
  border-bottom: 1px solid #e5e7eb;
}

/* Logo */
.increase .logo img {
  max-width: 60px;
  height: auto;
}

/* Description */
.increase .description {
  flex: 1;
  font-size: 15px;
  line-height: 1.6;
  color: #374151;
}

.increase .description ul {
  margin: 0;
  padding-left: 18px;
}

.increase .description li {
  margin-bottom: 6px;
}

/* Date */
.increase .date {
  min-width: 170px;
  font-size: 14px;
  color: #6b7280;
  white-space: nowrap;
}

/* Increase amount */
.increase .amount {
  min-width: 90px;
  text-align: right;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}

/* Filters */
.price-increase-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end;
  margin-bottom: 40px;
}

.price-increase-filters label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.price-increase-filters select {
  min-width: 220px;
  padding: 8px 10px;
}

.filter-actions {
  display: flex;
  gap: 12px;
}

.filter-actions button {
  background: #0599b4;
  color: #fff;
  border: none;
  padding: 8px 16px;
  font-weight: 100;
  cursor: pointer;
}

.filter-actions a {
  color: #2563eb;
  font-size: 14px;
}


/* ==============================
   CCF-style list rows
   ============================== */

.increase-date {
  font-size: 1.2rem!important;
}
.increase-value {
  font-size: 1.2rem !important;
}
.increase-content .wp-block-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.increase-content .wp-block-list li {
  display: flex;
  justify-content: none;
  align-items: left !important;
  padding: 10px 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 1.2rem;
  color: #111827;
}

/* Left text */
.increase-content .wp-block-list li span,
.increase-content .wp-block-list li {
  font-weight: 400;
}

/* Percentage (right aligned) */
.increase-content .wp-block-list li::after {
  content: attr(data-percent);
}

/* Remove last divider */
.increase-content .wp-block-list li:last-child {
  border-bottom: none;
}

/* Mobile */
@media (max-width: 768px) {
  .increase {
    flex-direction: column;
    gap: 15px;
  }

  .increase .amount {
    text-align: left;
  }
}