/*
Theme Name: WorkToCloud Enterprise News
Theme URI: https://www.worktocloud.es/
Author: WorkToCloud
Author URI: https://www.worktocloud.es/
Description: Tema empresarial para publicar noticias sobre productividad laboral y transformación digital.
Version: 1.2.2
Requires at least: 5.8
Tested up to: 6.9
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: worktocloud-enterprise
Tags: blog, news, two-columns, right-sidebar, custom-logo, custom-menu, featured-images, translation-ready
*/

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Source+Sans+3:wght@400;600;700&family=Sora:wght@500;600;700;800&display=swap");

:root{
  /* Paleta corporativa (sobria, B2B). Ajustable desde aquí. */
  /* Extraído del logotipo/cabecera de worktocloud.es */
  --wtc-navy: #051833;         /* azul marino corporativo */
  --wtc-blue: #318bc6;         /* azul principal */
  --wtc-blue-2: #4a9ad2;       /* azul secundario */

  --wtc-ink: #0b1b2b;          /* texto principal */
  --wtc-muted: #556273;        /* texto secundario */
  --wtc-bg: #f4f7fb;           /* fondo */
  --wtc-surface: #ffffff;      /* superficies */
  --wtc-border: rgba(11,27,43,.10);
  --wtc-accent: var(--wtc-blue);
  --wtc-accent-2: var(--wtc-blue-2);
  --wtc-shadow: 0 18px 40px rgba(11,27,43,.10);
  --wtc-radius: 14px;
  --wtc-max: 1180px;
  --wtc-gutter: 22px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: "Source Sans 3", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--wtc-ink);
  background:
    radial-gradient(900px 520px at 10% -10%, rgba(20,160,255,.16), transparent 55%),
    radial-gradient(760px 440px at 95% 0%, rgba(11,102,195,.10), transparent 55%),
    linear-gradient(180deg, var(--wtc-bg), #ffffff 72%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a{ color: var(--wtc-accent); text-decoration: none; }
a:hover{ color: #084d92; }

h1, h2, h3{
  font-family: "Sora", "Source Sans 3", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.wtc-container{
  width: min(var(--wtc-max), calc(100% - (var(--wtc-gutter) * 2)));
  margin: 0 auto;
}

/*
 * Cabecera alineada con worktocloud.es (stylelanding.css):
 * header sólido #051833 + nubes FUERA del header (#clouds-cabecera + #clouds-cabecera2)
 */
.wtc-header-shell{
  position: relative;
  z-index: 100;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.wtc-topbar{
  position: sticky;
  top: 0;
  z-index: 1500;
  background-color: #051833;
  width: 100%;
  left: 0;
  border-bottom: none;
}

.wtc-col-centered{
  float: none;
  margin: 0 auto;
  width: 100%;
}

/* Nubes en todos los anchos; escala proporcional en móvil */
.wtc-clouds-below{
  display: block;
}

/* Extraído de worktocloud.es (cloudscabecera3.png) */
.wtc-clouds-cabecera{
  background: transparent url("assets/clouds/cloudscabecera3.png") repeat-x 0 0;
  background-size: auto 100%;
  height: clamp(26px, 7vw, 43px);
  display: block;
  margin-top: -1px;
  opacity: 0.99;
  -webkit-animation: wtc-nube linear 140s infinite;
  animation: wtc-nube linear 140s infinite;
}
.wtc-clouds-cabecera2{
  background: transparent url("assets/clouds/cloudscabecera3.png") repeat-x 0 0;
  background-size: auto 100%;
  display: block;
  -webkit-animation: wtc-nube linear 200s infinite;
  animation: wtc-nube linear 200s infinite;
  height: clamp(40px, 11vw, 64px);
  opacity: 0.5;
}
/* Escritorio ancho: mismos píxeles que stylelanding */
@media (min-width: 1025px){
  .wtc-clouds-cabecera{
    height: 43px;
  }
  .wtc-clouds-cabecera2{
    height: 64px;
    margin-top: -45px;
  }
}
/* Tablet: subir un poco la segunda nube (cabecera2 quedaba baja) */
@media (min-width: 768px) and (max-width: 1024px){
  .wtc-clouds-cabecera{
    height: 43px;
  }
  .wtc-clouds-cabecera2{
    height: 64px;
    margin-top: -52px;
  }
}
/* Smartphone: solape un poco mayor que antes (subir cabecera2) */
@media (max-width: 767px){
  .wtc-clouds-cabecera2{
    margin-top: clamp(-40px, -12.5vw, -56px);
  }
}

@-webkit-keyframes wtc-nube{
  from{ background-position: 0 0; }
  to{ background-position: 1126px 0; }
}
@keyframes wtc-nube{
  from{ background-position: 0 0; }
  to{ background-position: 1126px 0; }
}
@media (prefers-reduced-motion: reduce){
  .wtc-clouds-cabecera,
  .wtc-clouds-cabecera2{
    -webkit-animation: none;
    animation: none;
  }
}

.wtc-topbar-inner{
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(12px, 3vw, 18px) 0 clamp(14px, 3.5vw, 22px);
}
/* Móvil: logo + hamburguesa en primera fila; menú debajo */
@media (max-width: 767px){
  .wtc-topbar-inner{
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    row-gap: 0;
  }
  .wtc-brand{
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }
  .wtc-nav-burger{
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
  .wtc-nav{
    grid-column: 1 / -1;
    grid-row: 2;
  }
}
.wtc-brand{
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}
.wtc-brand .custom-logo-link{
  display: inline-flex;
  align-items: center;
  max-width: 100%;
}
.wtc-brand img.custom-logo,
.wtc-brand .custom-logo-link img{
  height: auto;
  width: auto;
  max-height: clamp(30px, 9vw, 42px);
  max-width: min(240px, 72vw);
  display: block;
  object-fit: contain;
}
.wtc-official-logo{
  height: auto;
  max-height: clamp(30px, 9vw, 42px);
  width: auto;
  max-width: min(240px, 72vw);
  display: block;
  object-fit: contain;
  background: transparent;
}
.wtc-brand-sub{
  display: block;
  font-family: "Sora", "Source Sans 3", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: clamp(11px, 2.8vw, 12px);
  letter-spacing: .22px;
  text-transform: uppercase;
  color: rgba(255,255,255,.94);
  margin-top: 6px;
  font-weight: 800;
}
.wtc-logo{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.60), transparent 55%),
    linear-gradient(135deg, var(--wtc-accent-2), var(--wtc-accent));
  box-shadow: 0 10px 24px rgba(11,102,195,.18);
  border: 1px solid rgba(11,27,43,.10);
  flex: 0 0 auto;
}
.wtc-brand-text strong{
  display: block;
  font-size: 15px;
  letter-spacing: .2px;
  color: #fff;
  white-space: normal;
}
.wtc-brand-text span{
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.74);
  white-space: normal;
}

.wtc-nav-toggle{
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
}
.wtc-nav-burger{
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color: #fff;
  flex-shrink: 0;
}
.wtc-nav-burger:hover,
.wtc-nav-burger:focus-within{
  background: rgba(255,255,255,.14);
}
.wtc-nav-burger:focus-visible{
  outline: 3px solid rgba(74,154,210,.75);
  outline-offset: 2px;
}
.wtc-nav-burger__bars,
.wtc-nav-burger__bars::before,
.wtc-nav-burger__bars::after{
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  position: relative;
}
.wtc-nav-burger__bars::before,
.wtc-nav-burger__bars::after{
  content: "";
  position: absolute;
  left: 0;
}
.wtc-nav-burger__bars::before{ top: -7px; }
.wtc-nav-burger__bars::after{ top: 7px; }
.wtc-nav-toggle:checked ~ .wtc-nav-burger{
  background: #15499f;
}
.wtc-nav-toggle:checked ~ .wtc-nav-burger .wtc-nav-burger__bars{
  background: transparent;
}
.wtc-nav-toggle:checked ~ .wtc-nav-burger .wtc-nav-burger__bars::before{
  top: 0;
  transform: rotate(45deg);
}
.wtc-nav-toggle:checked ~ .wtc-nav-burger .wtc-nav-burger__bars::after{
  top: 0;
  transform: rotate(-45deg);
}

.wtc-nav{
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (min-width: 768px){
  .wtc-nav{
    display: flex;
  }
}
@media (max-width: 767px){
  .wtc-nav-burger{ display: inline-flex; }
  .wtc-nav{
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.14);
  }
  .wtc-nav-toggle:checked ~ .wtc-nav{
    display: flex;
  }
  .wtc-nav li a{
    padding: 14px 12px;
    border-radius: 8px;
  }
  .wtc-nav .wtc-button{
    margin-left: 0;
    margin-top: 8px;
    justify-content: center;
    text-align: center;
  }
}
.wtc-nav li{ list-style: none; margin: 0; padding: 0; }
/* Enlaces de menú como worktocloud.es (.navbar-nav li a) */
.wtc-nav li a{
  display: inline-block;
  padding: 12px 14px;
  border-radius: 0;
  color: #ffffff;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.8vw, 15px);
  line-height: 1.15;
  letter-spacing: 0;
}
.wtc-nav li a:hover,
.wtc-nav li a:focus{
  background: #15499f;
  color: #fff;
  transition: background-color 0.5s ease;
}
.wtc-nav .wtc-button{
  margin-left: 10px;
}

.wtc-hero{
  padding: 6px 0 10px;
}
.wtc-featured{
  border: 1px solid rgba(49,139,198,.28);
  border-radius: calc(var(--wtc-radius) + 10px);
  background:
    radial-gradient(900px 220px at 10% 0%, rgba(74,154,210,.22), transparent 62%),
    radial-gradient(600px 220px at 96% 0%, rgba(49,139,198,.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.86));
  box-shadow: 0 22px 60px rgba(5,24,51,.12);
  overflow: hidden;
}
.wtc-featured-inner{
  padding: 14px 16px 14px;
}
.wtc-featured-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 20px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.wtc-featured-head h1{
  margin: 0;
  flex: 1 1 16rem;
  min-width: min(100%, 12rem);
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  letter-spacing: -0.5px;
  line-height: 1.25;
  color: rgba(5,24,51,.98);
}
.wtc-featured-cta{
  flex: 0 0 auto;
  align-self: center;
  white-space: nowrap;
}
@media (max-width: 640px){
  .wtc-featured-head{
    flex-direction: column;
    align-items: stretch;
  }
  .wtc-featured-cta{
    width: 100%;
    justify-content: center;
  }
}
.wtc-featured-lead{
  margin: 0 0 12px;
  color: rgba(11,27,43,.82);
  max-width: none;
  font-family: "Open Sans", "Source Sans 3", ui-sans-serif, system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.45;
  letter-spacing: .01em;
}
@media (min-width: 1024px){
  .wtc-featured-lead{
    white-space: nowrap;
  }
}
@media (max-width: 1023px){
  .wtc-featured-lead{
    white-space: normal;
  }
}
.wtc-kpis{
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
@media (max-width: 980px){
  .wtc-kpis{ grid-template-columns: 1fr; }
}
.wtc-kpi{
  border: 1px solid rgba(49,139,198,.22);
  background: rgba(49,139,198,.08);
  border-radius: 12px;
  padding: 10px 12px;
  display: grid;
  gap: 4px;
}
.wtc-kpi strong{
  font-family: "Sora", "Source Sans 3", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  letter-spacing: -0.2px;
  font-size: 16px;
  color: rgba(5,24,51,.96);
}
.wtc-kpi span{
  color: rgba(11,27,43,.74);
  font-size: 13px;
  line-height: 1.35;
}
a.wtc-kpi--link{
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
a.wtc-kpi--link:hover{
  border-color: rgba(49,139,198,.45);
  background: rgba(49,139,198,.12);
}
a.wtc-kpi--link:focus-visible{
  outline: 3px solid rgba(74,154,210,.55);
  outline-offset: 2px;
}
.wtc-featured-points{
  margin: 14px 0 0;
  padding: 0 0 0 18px;
  color: rgba(11,27,43,.72);
  line-height: 1.55;
}
.wtc-featured-points li:nth-child(n+3){ display: none; }
.wtc-featured-points li{ margin: 6px 0; }

.wtc-pillars{
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 980px){
  .wtc-pillars{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px){
  .wtc-pillars{ grid-template-columns: 1fr; }
}

.wtc-pillar{
  padding: 12px 12px 11px;
  display: grid;
  gap: 6px;
  color: var(--wtc-ink);
  min-height: 112px;
  position: relative;
  overflow: hidden;
  border-color: rgba(255,255,255,.14);
}
.wtc-pillar::before{
  content:"";
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
  opacity: .96;
}
.wtc-pillar::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(5,24,51,.20), rgba(5,24,51,.62));
}
.wtc-pillar > *{
  position: relative;
  z-index: 1;
}
.wtc-pillar strong{
  font-size: 14px;
  letter-spacing: .2px;
  color: #fff;
}
.wtc-pillar span{
  font-size: 12.5px;
  color: rgba(255,255,255,.84);
  line-height: 1.45;
}
.wtc-pillar:hover{
  border-color: rgba(74,154,210,.55);
}
.wtc-pillar--noticias::before{ background-image: url("assets/pillars/noticias.svg"); }
.wtc-pillar--consejos::before{ background-image: url("assets/pillars/consejos.svg"); }
.wtc-pillar--estudios::before{ background-image: url("assets/pillars/estudios.svg"); }
.wtc-pillar--flexiworking::before{ background-image: url("assets/pillars/flexiworking.svg"); }
.wtc-button{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(11,27,43,.12);
  background: rgba(255,255,255,.92);
  color: var(--wtc-ink);
  font-weight: 700;
  letter-spacing: .1px;
  text-transform: none;
  box-shadow: 0 10px 22px rgba(11,27,43,.08);
}
.wtc-button--primary{
  background: linear-gradient(135deg, var(--wtc-accent), var(--wtc-accent-2));
  border-color: rgba(11,102,195,.35);
  box-shadow: 0 14px 30px rgba(11,102,195,.18);
  color: #fff;
}
.wtc-button:hover{ filter: brightness(1.06); }

/* In topbar, keep buttons consistent and legible */
.wtc-topbar .wtc-button{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
}
.wtc-topbar .wtc-button--primary{
  background: linear-gradient(135deg, var(--wtc-accent), var(--wtc-accent-2));
  border-color: rgba(49,139,198,.55);
  color: #fff;
}

.wtc-button:focus-visible,
.wtc-nav a:focus-visible{
  outline: 3px solid rgba(74,154,210,.55);
  outline-offset: 3px;
}

.wtc-grid{
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 22px;
  padding: 10px 0 44px;
  align-items: start;
}

@media (max-width: 980px){
  .wtc-grid{ grid-template-columns: 1fr; }
}

.wtc-card{
  border: 1px solid var(--wtc-border);
  background: var(--wtc-surface);
  border-radius: var(--wtc-radius);
  box-shadow: 0 14px 36px rgba(11,27,43,.08);
}

.wtc-post-card{
  overflow: hidden;
  margin: 0 0 18px;
}
/* Listados: imagen y texto en fila; entradas pares con orden invertido */
.wtc-post-loop > article.wtc-post-card{
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
.wtc-post-loop > article.wtc-post-card:nth-of-type(even){
  flex-direction: row-reverse;
}
.wtc-post-card:hover{
  box-shadow: 0 18px 44px rgba(11,27,43,.12);
  transform: translateY(-1px);
  transition: box-shadow .18s ease, transform .18s ease;
}
.wtc-post-card .wtc-post-inner{
  padding: 18px; /* margen interno para el contenido */
  flex: 1 1 auto;
  min-width: 0;
}
.wtc-post-loop > article.wtc-post-card:has(.wtc-post-thumb) .wtc-post-inner{
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wtc-post-card h2{
  margin: 0 0 6px;
  font-size: 22px;
  letter-spacing: -0.2px;
}
.wtc-post-card h2 a{ color: var(--wtc-ink); }
.wtc-post-card h2 a:hover{ color: var(--wtc-accent); }
.wtc-post-meta{
  color: var(--wtc-muted);
  font-size: 13px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.wtc-post-meta span{ display: inline-flex; align-items: center; gap: 8px; }
.wtc-post-meta span + span:before{
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(11,27,43,.25);
  display: inline-block;
}
.wtc-post-excerpt{
  margin: 0;
  color: var(--wtc-muted);
  line-height: 1.6;
}

.wtc-post-thumb{
  display: block;
  aspect-ratio: 16/9;
  width: 100%;
  background: rgba(11,27,43,.04);
  border-bottom: 1px solid var(--wtc-border);
}
.wtc-post-loop > article.wtc-post-card .wtc-post-thumb{
  flex: 0 0 38%;
  width: auto;
  max-width: 400px;
  min-width: 160px;
  align-self: stretch;
  aspect-ratio: 4 / 3;
}
.wtc-post-loop > article.wtc-post-card:has(.wtc-post-thumb):nth-of-type(odd) .wtc-post-thumb{
  border-bottom: none;
  border-right: 1px solid var(--wtc-border);
}
.wtc-post-loop > article.wtc-post-card:has(.wtc-post-thumb):nth-of-type(even) .wtc-post-thumb{
  border-bottom: none;
  border-left: 1px solid var(--wtc-border);
}
.wtc-post-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px){
  .wtc-post-loop > article.wtc-post-card,
  .wtc-post-loop > article.wtc-post-card:nth-of-type(even){
    flex-direction: column;
  }
  .wtc-post-loop > article.wtc-post-card .wtc-post-thumb{
    flex: none;
    width: 100%;
    max-width: none;
    min-width: 0;
    min-height: 0;
    aspect-ratio: 16/9;
    border-right: none !important;
    border-left: none !important;
    border-bottom: 1px solid var(--wtc-border);
  }
  .wtc-post-loop > article.wtc-post-card:has(.wtc-post-thumb) .wtc-post-inner{
    display: block;
  }
}

.wtc-sidebar{
  position: sticky;
  top: 100px;
}
.wtc-sidebar .wtc-sidebar-inner{
  padding: 18px;
}
.wtc-sidebar h3{
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: .2px;
}
.wtc-sidebar p, .wtc-sidebar a, .wtc-sidebar li{
  color: var(--wtc-muted);
  line-height: 1.6;
}
.wtc-sidebar ul{
  margin: 10px 0 0;
  padding: 0 0 0 18px;
}

.wtc-footer--worktocloud{
  position: relative;
  margin-top: 0;
  background: #051833;
  color: rgba(255,255,255,.86);
  border-top: none;
  overflow: hidden;
}

/* Nubes EXACTAMENTE encima del bloque azul del footer */
.wtc-footer-clouds-top{
  position: relative;
  z-index: 2;
  margin-top: 40px; /* separación respecto al contenido anterior */
  margin-bottom: -24px; /* baja más las nubes para evitar hueco */
}
.wtc-footer-clouds-top .wtc-clouds-cabecera,
.wtc-footer-clouds-top .wtc-clouds-cabecera2{
  transform: scaleY(-1);
  transform-origin: center;
}

/* Asegura que el solape sea el mismo que cabecera, pero invertido */
@media (min-width: 1025px){
  .wtc-footer-clouds-top .wtc-clouds-cabecera{ height: 43px; }
  .wtc-footer-clouds-top .wtc-clouds-cabecera2{ height: 64px; margin-top: -45px; }
}
@media (min-width: 768px) and (max-width: 1024px){
  .wtc-footer-clouds-top .wtc-clouds-cabecera{ height: 43px; }
  .wtc-footer-clouds-top .wtc-clouds-cabecera2{ height: 64px; margin-top: -52px; }
}
@media (max-width: 767px){
  .wtc-footer-clouds-top .wtc-clouds-cabecera2{
    margin-top: clamp(-40px, -12.5vw, -56px);
  }
}

.wtc-footer--worktocloud a{
  color: rgba(255,255,255,.92);
}
.wtc-footer--worktocloud a:hover{
  color: #fff;
  text-decoration: underline;
}

/* (Eliminado) Nubes decorativas inferiores del footer */

.wtc-footer-grid{
  padding: 34px 0 34px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 22px;
  align-items: start;
  position: relative;
  z-index: 5;
}

@media (max-width: 980px){
  .wtc-footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px){
  .wtc-footer-grid{ grid-template-columns: 1fr; }
}

.wtc-footer-col h3{
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255,255,255,.92);
}
.wtc-footer-col ul{
  list-style: disc;
  margin: 0;
  padding: 0 0 0 18px;
  display: grid;
  gap: 6px;
}
.wtc-footer-col li{
  color: rgba(255,255,255,.78);
  line-height: 1.55;
}
.wtc-footer-contact li{
  color: rgba(255,255,255,.78);
  line-height: 1.55;
}

/* WordPress basics */
.screen-reader-text{ position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.alignwide{ max-width: 100%; }
.wp-block-image img{ height: auto; }
img{ max-width: 100%; height: auto; }

