.custom-sidebar {
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-area.custom-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
/* Box container */
.sidebar-box {
  background-color: #001b06;
  padding: 20px;
  border-radius: 2px;
}
.sidebar-area.custom-sidebar .sidebar-box:first-child {
    padding: 0;
    background-color: transparent;
}
.sidebar-area.custom-sidebar .sidebar-box:first-child .sidebar-form input {
    position: relative;
    color: #1f3a2f;
}
/* Title */
.sidebar-title {
  font-size: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 12px;
}

/* Form layout */
.sidebar-form {
  display: flex;
  align-items: stretch;
}
form.newsletter-form.sidebar-form .newsletter-wrapper {
    width: 100%;
}
/* Input */
.sidebar-form input {
    flex: 1;
    background-color: transparent;
    border: 1px solid rgb(203 181 155);
    border-right: none;
    padding: 12px 14px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    border-radius: 0;
    height: 42px;
}

.sidebar-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.sidebar-area.custom-sidebar .sidebar-box:first-child .sidebar-form input::placeholder {
    color: #1f3a2f;
}
.sidebar-form button {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    width: 70px;
}
/* Button */
.sidebar-form button {
  width: 70px;
  background-color: #cbb59b;
  border: none;
  color: #1f3a2f;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-radius: 0 !important;
    padding: 12px !important;
}

.sidebar-form button:hover {
  background-color: #d8c3a8;
}

#comments .comment-respond {
    background: transparent;
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
    border: 1px solid #001b06;
}
#comments .comment-respond * {
    color: #1f3a2f;
}
#comments .comment-list {
    margin: 1rem 0 2rem;
}
