.post-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.post-card {
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.post-card-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 1.62 / 1;
  border-radius: 8px;
  background: #f4f4f4;
}

.post-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-card:hover .post-card-image img {
  transform: scale(1.04);
}

.post-card-content {
  padding-top: 18px;
}

.post-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: #9ba1aa;
  font-size: 14px;
  line-height: 1.35;
}

.post-card-meta a {
  color: #9ba1aa;
  text-decoration: none;
}

.post-card h2 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}

.post-card h2 a {
  color: inherit;
  text-decoration: none;
}

.post-card h2 a:hover,
.post-card-readmore:hover {
  color: #f59a57;
}

.post-card .entry-summary {
  color: #6f7680;
  font-size: 15px;
  line-height: 1.65;
}

.post-card-readmore {
  display: inline-flex;
  margin-top: 12px;
  color: #d99252;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.puniking-contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 30px;
  width: 100%;
}

.puniking-contact-form-box,
.puniking-contact-info-box {
  min-width: 0;
}

.puniking-contact-form-box h2,
.puniking-contact-info-box h2 {
  margin: 0 0 22px;
  color: #20242b;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.15;
}

.wpcf7-form p {
  margin: 0 0 18px;
}

.wpcf7-form label {
  display: block;
  color: #2d333b;
  font-size: 14px;
  font-weight: 700;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid #e8eaef;
  border-radius: 24px;
  background: #fff;
  color: #20242b;
  font-size: 15px;
  outline: none;
}

.wpcf7-form textarea {
  min-height: 180px;
  resize: vertical;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-color: #f59a57;
  box-shadow: 0 0 0 3px rgba(245, 154, 87, 0.16);
}

.wpcf7-form input[type="submit"] {
  min-height: 46px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  background: #f59a57;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.wpcf7-form input[type="submit"]:hover {
  background: #e68744;
}

.puniking-contact-info-box {
  padding-top: 4px;
}

.puniking-contact-info-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.puniking-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 4px solid #111;
  border-radius: 50%;
  color: #111;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.puniking-contact-info-item strong,
.puniking-contact-info-item span {
  display: block;
}

.puniking-contact-info-item strong {
  margin-bottom: 4px;
  color: #20242b;
  font-size: 20px;
  font-weight: 900;
}

.puniking-contact-info-item span {
  color: #69707a;
  font-size: 15px;
  line-height: 1.55;
}

.puniking-form-notice {
  padding: 16px 18px;
  border: 1px dashed rgba(15, 23, 42, 0.2);
  border-radius: 8px;
  color: #69707a;
}

@media (max-width: 1024px) {
  .post-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .puniking-contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .post-list {
    grid-template-columns: 1fr;
  }

  .puniking-contact-form-box h2,
  .puniking-contact-info-box h2 {
    font-size: 28px;
  }
}
