 .advertisement-section-2 {
  /* background-image: url("./images/Frame-68.png"); */
  width: 100%;
  background-size: cover;
  height: auto;
  color: #fff;
}  

.advertisement-section img {
  width: 100%;
}

.advertisement-text-2 {
  color: #fff;
  padding: 115px 0px;
  text-align: center;
  opacity: 0.6;
  font-size: 2rem;
} 

.article-container {
  padding: 40px;
  /* max-width: 750px; */
  width: 100%;
  background-color: #fffcf3;
}

.headline {
  font-size: 1.8rem;
  font-weight: 700;
  color: #a32121;
  margin-bottom: 24px;
}

.subheadline {
  font-size: 1.8rem;
  font-style: italic;
  font-weight: lighter !important;
  margin-bottom: 16px;
  line-height: 2rem;
}

.meta{
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 20px;
}

.meta i {
  margin-right: 6px;
  color: #444;
}

.meta span {
  display: flex;
  align-items: center;
}

.main-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
  object-fit: cover;
  height: 350px;
}

.meta-1{
  /* display: flex; */
  align-items: center;
  gap: 16px;
  font-size: 0.80rem;
  color: #444;
  margin-bottom: 20px;
}

.meta-1 i {
  margin-right: 6px;
  color: #444;
}

.meta-1 span {
  display: flex;
  align-items: center;
}

.content {
  font-family: "Georgia", serif;
  font-size: 1rem;
  color: #2d2d2d;
  letter-spacing: 0.03rem;
  word-spacing: 0.2rem;
  line-height: 1.3rem;
}

.content p {
  margin-bottom: 24px;
}

.content strong {
  font-weight: 700;
  line-height: 1.8rem;
}

.images-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.images-row img {
  min-width: 600px;
  border-radius: 12px;
  object-fit: cover;
  height: 300px;
}

/* Responsive Styles */
@media (max-width: 600px) {
  .headline {
    font-size: 1.3rem;
  }
  .article-container {
    padding: 20px;
  }
  .subheadline {
    font-size: 1.3rem;
    line-height: 1.5rem;
  }
  .images-row {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .images-row img {
    min-width: 100%;
  }
}

/* comment section styling starts here  */

/* body {
  margin: 0;
  font-family: "Georgia", serif;
  background-color: #c13d3d;
  padding: 40px 16px;
  color: #2a2a2a;
} */

.comment-section {
  /* max-width: 1000px; */
  /* margin: 0 auto; */
  padding: 40px;
  background-color: #fff0f0;
  margin-top: 24px;
}

.comment-section h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #781c1c;
  margin-bottom: 10px;
}

.comment-section p {
  font-size: 1.1rem;
  color: #686868;
  font-weight: normal;
  margin-bottom: 24px;
}

.comment-section form {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 6px;
  color: #2a2a2a;
}

label.required::after {
  content: " *";
  color: #000;
  font-weight: bold;
}

textarea,
input {
  border: none;
  border-radius: 14px;
  padding: 18px 20px;
  font-size: 1rem;
  font-family: inherit;
  resize: none;
  background-color: #fff;
  color: #333;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

textarea::placeholder,
input::placeholder {
  color: #888;
}

textarea {
  min-height: 160px;
  flex: 1;
}

.left {
  flex: 1 1 60%;
}

.right {
  flex: 1 1 35%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.checkbox-row input[type="checkbox"] {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  accent-color: #000;
}

.checkbox-row label {
  font-size: 1rem;
  font-weight: 500;
  color: #444;
}

.submit-btn {
  background-color: #111;
  color: #fff;
  border: none;
  border-radius: 14px;

  text-align: center;

  width: 100%;
  margin-top: 20px;
  transition: background 0.3s ease;

  padding: 0.8rem 2rem;

  font-size: 1rem;
  font-family: "Georgia", serif;
  letter-spacing: 1px;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #000;
}

@media (max-width: 768px) {
  .comment-section form {
    flex-direction: column;
  }

  .left,
  .right {
    flex: 1 1 100%;
  }

  .checkbox-row {
    flex-wrap: wrap;
  }
}
