/* WP admin bar offset */
body.admin-bar .ex-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .ex-header {
    top: 46px;
  }
}
body.admin-bar .ex-hero {
  padding-top: calc(32px + var(--header-h));
}

@media (max-width: 782px) {
  body.admin-bar .ex-hero {
    padding-top: calc(46px + var(--header-h));
  }
}
/* ---------------------------------------
   FONT VARIABLES
   --------------------------------------- */
:root{
  --font-heading: "Outfit",
    ui-sans-serif, system-ui, -apple-system,
    "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", "Liberation Sans", sans-serif;

  --font-body: "Outfit",
    ui-sans-serif, system-ui, -apple-system,
    "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

/* ---------------------------------------
   BASE TYPOGRAPHY
   --------------------------------------- */
body{
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  color: #111;
}

/* ---------------------------------------
   HEADINGS
   --------------------------------------- */
h1,
h2{
  font-family: var(--font-heading);
  font-style: normal;
  line-height: 1.21;
  color: #111;
}

h1{ font-weight: 600; }
h2{ font-weight: 500; }

/* ---------------------------------------
   TYPO SCALE
   --------------------------------------- */
h1{ font-size: 32px; line-height: 40px; }
h2{ font-size: 28px; line-height: 34px; }

@media (min-width: 576px){
  h1{ font-size: 36px; line-height: 44px; }
  h2{ font-size: 30px; line-height: 36px; }
}

@media (min-width: 768px){
  h1{ font-size: 42px; line-height: 50px; }
  h2{ font-size: 32px; line-height: 38px; }
}

@media (min-width: 992px){
  h1{ font-size: 42px; line-height: 54px; }
  h2{ font-size: 30px; line-height: 38px; }
}

@media (min-width: 1200px){
  h1{ font-size: 60px; line-height: 68px; }
  h2{ font-size: 38px; line-height: 46px; }
}

@media (min-width: 1400px){
  h1{ font-size: 60px; line-height: 68px; }
  h2{ font-size: 38px; line-height: 46px; }
}
/* ========================================
   H1 — NON HOMEPAGE (HP BREAKPOINT SCALE)
======================================== */

body:not(.page-template-page-home) .ex-hero h1 {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-align: center;

  font-size: 32px;
  line-height: 40px;
}

@media (min-width: 576px){
  body:not(.page-template-page-home) .ex-hero h1 {
    font-size: 36px;
    line-height: 44px;
  }
}

@media (min-width: 768px){
  body:not(.page-template-page-home) .ex-hero h1 {
    font-size: 40px;
    line-height: 50px;
  }
}

@media (min-width: 992px){
  body:not(.page-template-page-home) .ex-hero h1 {
    font-size: 44px;
    line-height: 56px;
  }
}

@media (min-width: 1200px){
  body:not(.page-template-page-home) .ex-hero h1 {
    font-size: 44px;
    line-height: 56px;
  }
}

@media (min-width: 1400px){
  body:not(.page-template-page-home) .ex-hero h1 {
    font-size: 44px;
    line-height: 56px;
  }
}

/* ---------------------------------------
   BODY TEXT
   --------------------------------------- */
p,
li,
blockquote,
label,
input,
textarea{
  font-family: var(--font-body);
  font-weight: 400;
}

strong,
b{
  font-weight: 600;
}

small,
.text-small{
  font-size: 0.875rem;
  line-height: 1.4;
}

/* ---------------------------------------
   LINKS
   --------------------------------------- */
a,
a:visited{
  color: currentColor;
}

/* ---------------------------------------
   GLOBAL SECTION SPACING
   --------------------------------------- */
.ex-section{
  padding-top: clamp(55px, calc(39.24px + 4.20vw), 120px);
  padding-bottom: clamp(55px, calc(31.95px + 6.15vw), 150px);
}

.program-layout-internshipusa .ex-faq.ex-section {
  padding-bottom: clamp(160px, calc(120px + 12vw), 360px);
}

.program-layout-aupair .ex-section.whywat.whywat--set-1,
.program-layout-watusa .ex-section.whywat.whywat--set-1 {
  padding-bottom: clamp(8px, calc(19px + 3.7vw), 0px);
}

@media (min-width: 768px) {
  .program-layout-internshipusa .ex-hiw.ex-section {
    padding-top: 60px;
  }
}

@media (min-width: 992px) {
  .program-layout-internshipusa .ex-hiw.ex-section {
    padding-top: 260px;
  }
}

/* ---------------------------------------
   GLOBAL CTA BUTTON
   --------------------------------------- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 33px;
  border-radius: 4px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: #FF6A1A;
  color: #fff !important;
  border: 1px solid #FF6A1A;

  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.btn-cta:hover {
  background: #fff;
  color:#FF6A1A!important;
  transform: translateY(-1px);
}

.btn-cta:active {
  transform: translateY(0);
  box-shadow: 0 8px 14px rgba(255,106,26,.18);
}
@media (min-width: 1200px) and (max-width:1500px){
	.btn-cta {
		padding:18px 28px;
		font-size:16px;
	}
}

/* ---------------------------------------
   MOBILE (≤767px)
   --------------------------------------- */
@media (max-width: 767.98px){

  /* CTA typography override */
  .btn-cta{
    font-size: 16px;
    line-height: 40px;
    letter-spacing: 0.11em;
    padding: 5px 15px;
    width: 100%;
  }
	.watdest .btn-cta {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.11em;
    padding: 20px 23px;
}
	.ex-testimonials__cta-desktop .btn-cta {
		line-height:20px;
	}
	

  /* existing typography adjustments */
  .ex-about__text,
  .ex-about__text p {
    font-size: 17px;
    line-height: 26px;
  }

  .ex-about__bullets li {
    font-size: 15px;
    line-height: 28px;
  }
}
.ex-404-page__section {
  padding: 72px 0;
}

.ex-404-content {
  max-width: 900px;
  margin: 0 auto;
}

.ex-404-content .page-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 20px;
}

.ex-404-widgets {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.ex-404-widget {
  background: #F1EEEB;
  padding: 20px;
  border: 1px solid #D5CFC9;
  border-radius: 4px;
}

.ex-404-widget .widget-title {
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 12px;
}

.ex-404-widget ul {
  padding-left: 18px;
  margin: 0;
}

.ex-404-widget li {
  margin-bottom: 6px;
}
.ex-archive-post {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  padding: 20px;
  background: #F1EEEB;
  border: 1px solid #D5CFC9;
  border-radius: 4px;
}

.ex-archive-post__thumb img {
  width: 100%;
  height: 100%;
  max-height: 220px;
  object-fit: cover;
  display: block;
}

.ex-archive-post__body .entry-title {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 28px;
  line-height: 34px;
}

.ex-archive-post__body .entry-title a {
  color: #111;
  text-decoration: none;
}

.ex-archive-post__date {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 14px;
}

.ex-archive-post__body .entry-summary p {
  margin-bottom: 14px;
}

@media (max-width: 767px) {
  .ex-archive-post {
    grid-template-columns: 1fr;
  }
}

.ex-job-examples {
	background: #fff;
}

.ex-job-examples__title {
	margin: 0 0 55px;
	text-align: center;
}

.ex-job-examples__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.ex-job-card {
	height: 100%;
}

.ex-job-card__link {
	display: block;
	height: 100%;
	padding: 28px 24px 24px;
	background:#134EAF;
	border-radius: 8px;
	text-decoration: none;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ex-job-card__link:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
	text-decoration: none;
	background:#3271D9;
	font-weight:600;
	
}

.ex-job-card__job-title {
	margin: 0px 0 40px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: #fff;
}

.ex-job-card__meta {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.ex-job-card__item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.ex-job-card__label {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 14px;
	line-height: 1.3;
	color: #fff;
}

.ex-job-card__value {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
	color: #fff;
	opacity: 0.95;
}

.ex-job-examples__actions {
	margin-top: 70px;
	text-align: center;
}

.ex-job-examples__actions .btn-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 220px;
}

@media (max-width: 991px) {
	.ex-job-examples {
		padding: 64px 0;
	}

	.ex-job-examples__title {
		margin-bottom: 28px;
		font-size: 34px;
	}

	.ex-job-examples__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}
}

@media (max-width: 575px) {
	.ex-job-card__link {
		padding: 22px 18px;
	}

	.ex-job-card__job-title {
		font-size: 18px;
		margin-bottom: 22px;
	}
}