/*--------------------------------------------------------------
# Archive Sidebar
--------------------------------------------------------------*/
.archive-sidebar-item-title {
  font-size: 24px;
  color: var(--main-gray-950);
  padding-bottom: 30px;
  font-weight: 600;
  display: block;
}

/*--------------------------------------------------------------
# Newsletter Sidebar Card
--------------------------------------------------------------*/
.newsletter-sidebar-card {
  background: var(--main-yellow-400);
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 2em;
  position: relative;
  overflow: hidden;
}

.newsletter-sidebar-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-image: url("../images/small-city-bg.svg");
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 1;
}

.newsletter-content {
  position: relative;
  z-index: 2;
}

.newsletter-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: var(--color-navy);
  margin: 0 0 16px 0;
  text-align: center;
}

.newsletter-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-navy);
  margin: 0 0 32px 0;
  text-align: center;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.newsletter-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.newsletter-input-wrapper:focus-within {
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

.newsletter-icon {
  flex-shrink: 0;
  margin-right: 12px;
  width: 24px;
  height: 24px;
}

input.newsletter-input {
  flex: 1;
  border: none;
  outline: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #303030;
  background: transparent;
}

.newsletter-input::placeholder {
  color: #808080;
}

.newsletter-button {
  background: var(--main-green-500);
  border: none;
  border-radius: 12px;
  padding: 16px 24px;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 2px 8px rgba(97, 196, 83, 0.3);
}

.newsletter-button:hover {
  background: #52b045;
  box-shadow: 0px 4px 16px rgba(97, 196, 83, 0.4);
  transform: translateY(-2px);
}

.newsletter-button:active {
  transform: translateY(0);
  box-shadow: 0px 2px 8px rgba(97, 196, 83, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .newsletter-sidebar-card {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .newsletter-title {
    font-size: 28px;
  }

  .newsletter-description {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .newsletter-input-wrapper {
    padding: 14px 16px;
  }

  .newsletter-button {
    padding: 14px 20px;
    font-size: 16px;
  }
}
