/* =============================================
   ARKIEE STUDIO — WordPress Extras
   Overrides for plugins, post content, pagination, and CTA
   ============================================= */

/* ----------------------------------------------
   1. POST CONTENT TYPOGRAPHY (single pages)
---------------------------------------------- */
.post-content h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--ink);
  margin: 36px 0 16px;
}

.post-content h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  margin: 28px 0 12px;
}

.post-content p {
  margin-bottom: 20px;
}

.post-content ul,
.post-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.post-content li {
  margin-bottom: 6px;
}

.post-content blockquote {
  border-left: 3px solid var(--clay);
  padding: 16px 24px;
  margin: 28px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  background: var(--warm);
}

.post-content img {
  margin: 28px 0;
  border-radius: 0;
}

.post-content a {
  color: var(--clay);
  border-bottom: 1px solid var(--clay);
}

/* ----------------------------------------------
   2. WORDPRESS PAGINATION
---------------------------------------------- */
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.page-numbers a,
.page-numbers span {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 8px 14px;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: all 0.25s;
}

.page-numbers .current,
.page-numbers a:hover {
  background: var(--ink);
  color: var(--warm);
  border-color: var(--ink);
}

/* ----------------------------------------------
   3. CONTACT FORM 7 OVERRIDES
---------------------------------------------- */
.wpcf7 input:not([type="submit"]),
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  background: rgba(28, 28, 26, 0.04);
  border: 1px solid var(--line);
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  border-radius: 0;
  transition: border-color 0.3s;
  margin-bottom: 14px;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  border-color: var(--clay);
}

.wpcf7 input[type="submit"] {
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s;
  width: auto;
}

.wpcf7 input[type="submit"]:hover {
  background: var(--clay);
}

/* ----------------------------------------------
   4. GLOBAL CTA SECTION (split layout)
---------------------------------------------- */
#home-cta,
.site-cta {
  background: var(--clay);
  padding: 100px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 40px;
  box-sizing: border-box;
}

.cta-text {
  max-width: 600px;
  text-align: left;
}

#home-cta .cta-text h2,
.site-cta h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}

#home-cta .cta-text p,
.site-cta p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* White button */
.btn-white,
.site-cta .button {
  flex-shrink: 0;
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  background: var(--white);
  padding: 18px 40px;
  transition: all 0.3s ease;
  white-space: nowrap;
  border-radius: 0;
  border: none;
}

.btn-white:hover,
.site-cta .button:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

/* Responsive CTA */
@media (max-width: 900px) {
  #home-cta,
  .site-cta {
    padding: 60px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .btn-white,
  .site-cta .button {
    white-space: normal;
  }
}