﻿/* =========================================================
   HRus — homepage mockup
   Design system + sections (desktop-first @1440, responsive @390)
   ========================================================= */

   :root {
    /* Brand */
    --green: #74b72e;
    --green-600: #5fa327;
    --green-700: #4c841f;
    --green-soft: #eef6e6;
  
    /* Neutrals */
    --ink: #161b22;
    --ink-2: #1f2630;
    --text: #26303a;
    --muted: #6b7683;
    --muted-2: #939393;
    --line: #e7eaee;
    --line-2: #eef1f4;
    --bg: #ffffff;
    --bg-soft: #f7f9f6;
    --bg-soft-2: #f3f6f1;
  
    /* Footer */
    --footer-bg: #10151b;
    --footer-bg-2: #0b0f14;
    --footer-text: #aeb6c0;
    --footer-line: #232a33;
  
    /* Effects */
    --shadow-sm: 0 1px 2px rgba(20, 27, 34, .04), 0 2px 8px rgba(20, 27, 34, .05);
    --shadow-md: 0 6px 20px rgba(20, 27, 34, .08);
    --shadow-lg: 0 18px 50px rgba(20, 27, 34, .14);
    --radius: 16px;
    --radius-sm: 12px;
    --radius-lg: 22px;
    --ease: cubic-bezier(.22, .61, .36, 1);
    --arrow-shift: -4px;
    --arrow-scale: 1;
    --container: 1240px;
  }
  [dir="rtl"] {
    --arrow-shift: 4px;
    --arrow-scale: -1;
  }
  
  * { box-sizing: border-box; }
  
  html { scroll-behavior: smooth; }
  
  body {
    margin: 0;
    font-family: "Heebo", system-ui, "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    font-size: 16px;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  
  h1, h2, h3, h4 {
    /* font-family: "Rubik", "Heebo", sans-serif; */
    color: var(--ink);
    margin: 0;
    line-height: 1.2;
    font-weight: 700;
    /* letter-spacing: -0.01em; */
  }
  
  p { margin: 0; }
  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; }
  ul { margin: 0; padding: 0; list-style: none; }
  button { font-family: inherit; cursor: pointer; }
  
  svg { stroke: currentColor; stroke-width: 1.9; fill: none; stroke-linecap: round; stroke-linejoin: round; }
  
  .container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 32px;
  }
  
  /* ---------- Buttons ---------- */
  .btn {
    --btn-bg: var(--green);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .2s;
    white-space: nowrap;
  }
  .btn__arrow {
    display: inline-block;
    font-size: 1.15em;
    line-height: 0;
    transform: scaleX(var(--arrow-scale));
    transform-origin: center;
    transition: transform .25s var(--ease);
  }
  .btn:hover .btn__arrow {transform: scaleX(var(--arrow-scale)) translateX(var(--arrow-shift));}
  
  .btn--green {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-600) 100%);
    color: #fff;
    /* box-shadow: 0 8px 18px rgba(116, 183, 46, .28); */
  }
  .btn--green:hover {/* transform: translateY(-2px); *//* box-shadow: 0 12px 26px rgba(116, 183, 46, .38); */}
  
  .btn--ghost {
    background: #fff;
    color: var(--green-700);
    border-color: var(--line);
    box-shadow: var(--shadow-sm);
  }
  .btn--ghost:hover {border-color: var(--green);color: var(--green-600);/* transform: translateY(-1px); */}
  
  .btn--outline {
    background: transparent;
    color: var(--green-700);
    border-color: var(--green);
    padding: 13px 30px;
  }
  .btn--outline:hover { background: var(--green); color: #fff; }
  
  .btn--whatsapp {
    background: #fff;
    color: var(--green-700);
    border: 1.5px solid var(--green);
    padding: 12px 26px;
  }
  .btn--whatsapp svg { stroke: var(--green); }
  .btn--whatsapp:hover { background: var(--green-soft); }
  
  .btn--lg { padding: 15px 28px; font-size: 16px; }
  .btn--sm {padding: 9px 16px;font-size: 15.5px;}
  .btn--full { width: 100%; justify-content: center; }
  
  /* =========================================================
     HERO
     ========================================================= */
  .hero {
    position: relative;
    min-height: 790px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: #fff;
  }
  .hero__bg {
    position: absolute;
    inset: 0;
    background: url("assets/hero-speaker-audience.jpg") center 30% / cover no-repeat;
    z-index: 0;
    transform: scale(1.02);
  }
  .hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(15,20,26,.72) 0%, rgba(15,20,26,.55) 34%, rgba(15,20,26,.78) 100%),
      radial-gradient(120% 90% at 60% 30%, rgba(15,20,26,.25) 0%, rgba(15,20,26,.7) 100%);
  }
  
  /* --- Nav --- */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: background-color .28s var(--ease), box-shadow .28s var(--ease), backdrop-filter .28s var(--ease);
  }
  .nav.is-scrolled {
    background: rgba(8, 14, 22, .7);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgba(8, 14, 22, .26);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }
  .nav__inner {
    max-width: var(--container);
    margin-inline: auto;
    padding: 22px 32px;
    display: flex;
    align-items: center;
    gap: 28px;
    justify-content: space-between;
    position: relative;
  }
  
  .brand { display: inline-flex; align-items: center; gap: 12px; }
  .brand__mark {height: 64px;width: auto;}
  .brand__word {display: none;flex-direction: column;line-height: 1;}
  .brand__name {
    font-family: "Rubik", sans-serif;
    font-weight: 800;
    font-size: 27px;
    letter-spacing: .5px;
    color: #fff;
    direction: ltr;
  }
  .brand__accent { color: var(--green); }
  .brand__tag { font-size: 11px; letter-spacing: .12em; color: rgba(255,255,255,.7); margin-top: 3px; }
  
  .nav__menu {display: flex;align-items: center;gap: 26px;/* margin-inline-start: auto; */}
  .nav__menu a {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,.86);
    padding-bottom: 4px;
    position: relative;
    transition: color .2s;
  }
  .nav__menu a::after {
    content: ""; position: absolute; inset-inline: 0; bottom: -2px; height: 2px;
    background: var(--green); border-radius: 2px; transform: scaleX(0); transition: transform .25s var(--ease);
  }
  .nav__menu a:hover { color: #fff; }
  .nav__menu a:hover::after, .nav__menu a.is-active::after { transform: scaleX(1); }
  .nav__menu a.is-active { color: #fff; }
  
  .nav__actions { display: flex; align-items: center; gap: 16px; }
  .nav__icon {
    width: 40px; height: 40px; border-radius: 999px;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
    color: #fff; display: grid; place-items: center; transition: background .2s;
  }
  .nav__icon i { font-size: 17px; line-height: 1; }
  .nav__icon:hover { background: rgba(255,255,255,.2); }
  .nav__login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,.9);
    padding-inline-start: 16px;
    border-inline-start: 1px solid rgba(255,255,255,.2);
    letter-spacing: .08em;
  }
  .nav__login i { font-size: 18px; line-height: 1; }
  .nav__login:hover { color: #fff; }
  
  .nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
  .nav__burger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .25s; }

  /* Drawer wrapper is transparent on desktop; parts hidden until mobile */
  .nav__drawer { display: contents; }
  .nav__drawer-head,
  .nav__drawer-login,
  .nav__close,
  .nav__backdrop { display: none; }
  body.nav-locked { overflow: hidden; }
  
  /* --- Hero content --- */
  .hero__content {
    position: relative;
    z-index: 2;
    /* flex: 1; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 156px 32px 24px;
    max-width: 860px;
    margin-inline: auto;
  }
  .hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 18px;
  }
  .hero__title {
    color: #fff;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.12;
    text-shadow: 0 2px 30px rgba(0,0,0,.35);
  }
  .hero__title .accent { color: var(--green); }
  .hero__sub {
    margin-top: 22px;
    font-size: 19px;
    color: rgba(255,255,255,.86);
    font-weight: 300;
    /* max-width: 620px; */
  }
  
  .hero__search {
    margin-top: 34px;
    width: min(660px, 100%);
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.97);
    border-radius: 999px;
    padding: 8px 8px 8px 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,.28);
  }
  .hero__search-icon { width: 20px; height: 20px; color: var(--muted); flex: none; }
  .hero__search input {
    flex: 1; border: 0; background: none; outline: none;
    font-family: inherit; font-size: 16px; color: var(--text);
    padding: 8px 6px;
  }
  .hero__search input::placeholder { color: var(--muted-2); }
  
  /* --- Quick access --- */
  .hero__quick {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    max-width: 930px;
    margin: 8px auto 90px;
    padding: 0 24px;
    width: 100%;
  }
  .quick {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    padding: 22px 10px;
    text-align: center;
    position: relative;
    transition: transform .25s var(--ease);
  }
  .quick:not(:last-child)::after {
    content: "";
    position: absolute;
    inset-inline-end: 0;
    top: 22%;
    bottom: 22%;
    width: 1px;
    background: rgba(255,255,255,.16);
    /* left: 0; */
  }
  .quick__ico {
    width: 52px; height: 52px; border-radius: 14px;
    display: grid; place-items: center;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    color: var(--green);
    transition: background .25s, transform .25s var(--ease);
  }
  .quick__ico i {font-size: 26px;line-height: 1;}
  .quick__label {font-size: 16px;font-weight: 400;color: rgba(255,255,255,.92);/* letter-spacing: .08em; */}
  .quick:hover { transform: translateY(-2px); }
  .quick:hover .quick__ico { background: rgba(116,183,46,.16); border-color: rgba(116,183,46,.5); }
  
  /* --- Green wave --- */
  .hero__wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 4; line-height: 0; }
  .hero__wave svg { width: 100%; height: 140px; display: block; stroke:none !important; }
  .wave-fill { fill: var(--bg-soft); }
  .wave-line {
    fill: none;
    stroke: var(--green);
    stroke-width: 10;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  
  /* =========================================================
     SECTIONS shared
     ========================================================= */
  .section {padding: 92px 0;}
  .section__head { margin-bottom: 40px; }
  .section__head--end { text-align: right; }
  .section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--green-700);
    /* font-family: "Rubik", sans-serif; */
  }
  .section__eyebrow .dash { width: 34px; height: 3px; border-radius: 3px; background: var(--green); }
  .section__title {
    font-size: 30px;
    /* font-weight: 600; */
    color: #444;
    margin-top: 5px;
    /* font-family: "Heebo", sans-serif; */
    letter-spacing: 0;
  }


  .section__desc {
    font-size: 18px;
    color: #666;
    margin-top: 5px;
    line-height: 1.5;
    /* margin-bottom: 30px; */
  }
  .section__foot { display: flex; justify-content: center; margin-top: 44px; }
  
  .link-all {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 600; color: var(--green-700); font-size: 15px;
    transition: gap .2s, color .2s;
  }
  .link-all:hover { color: var(--green-600); }
  .link-all .btn__arrow { transition: transform .25s var(--ease); }
  .link-all:hover .btn__arrow { transform: scaleX(var(--arrow-scale)) translateX(var(--arrow-shift)); }
  
  .cat-tag {
    position: absolute; top: 14px; inset-inline-start: 14px;
    background: linear-gradient(135deg, var(--green), var(--green-600));
    color: #fff; font-size: 12px; font-weight: 600;
    padding: 5px 12px; border-radius: 8px;
    box-shadow: 0 4px 10px rgba(76,132,31,.3);
    z-index: 2;
  }
  .cat-tag--light {
    position: static; display: inline-block;
    background: var(--green-soft); color: var(--green-700);
    box-shadow: none; margin-bottom: 8px;
  }
  
  /* =========================================================
     CONFERENCES
     ========================================================= */
  .conferences {background: var(--bg-soft);padding-top: 60px;}
  .conferences .section__head { display: flex; justify-content: flex-start; }
  .conferences .section__foot {margin-top: 60px;}
  
  .conf-grid {
    display: grid;
    grid-template-columns: 1fr 1.28fr;
    gap: 26px;
    align-items: stretch;
  }
  
  /* date badge */
  .date-badge {
    position: absolute;
    top: 0;
    inset-inline-start: 24px;
    background: linear-gradient(160deg, var(--green), var(--green-600));
    color: #fff;
    text-align: center;
    padding: 12px 14px 10px;
    border-radius: 0 0 12px 12px;
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    box-shadow: 0 8px 18px rgba(76,132,31,.35);
    gap: 2px;
  }
  .date-badge b {font-size: 26px;font-weight: 800;font-family: "Rubik";letter-spacing: 0.5px;}
  .date-badge span {font-size: 12.5px;font-weight: 500;letter-spacing: 0.1px;}
  .date-badge i {font-size: 12px;font-style: normal;opacity: .85;letter-spacing: 0.1px;}
  .date-badge--sm { inset-inline-start: 16px; padding: 9px 11px 7px; }
  .date-badge--sm b { font-size: 20px; }
  .date-badge--sm span { font-size: 11px; }
  .date-badge--sm i { font-size: 10.5px; }
  
  .pill {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    align-self: flex-start;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 999px;
    /* letter-spacing: 0.5px; */
  }
  .pill--dark {position: absolute;top: 20px;inset-inline-end: 24px;background: rgba(17,21,27,.22);color: #fff;border: 1px solid rgba(255,255,255,.2);backdrop-filter: blur(4px);}
  .pill--ghost {
    background: rgb(235 235 235 / 46%);
    color: #000000;
    border: 1px solid rgba(255,255,255,.26);
    backdrop-filter: blur(4px);
  }
  
  /* featured */
  .conf-feature {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 620px;
    display: flex;
    align-items: flex-end;
    box-shadow: var(--shadow-lg);
    isolation: isolate;
  }
  .conf-feature__media { position: absolute; inset: 0; z-index: -1; }
  .conf-feature__media img { width: 100%; height: 100%; object-fit: cover; }
  .conf-feature__scrim {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(17,21,27,.15) 0%, rgba(17,21,27,.35) 45%, rgba(17,21,27,.9) 100%);
  }
  .conf-feature .date-badge, .conf-feature .pill--dark { z-index: 2; }
  .conf-feature__body { position: relative; z-index: 2; padding: 36px 34px 34px; color: #fff; width: 100%; }
  .conf-feature__title {color: #fff;font-size: 28px;font-weight: 800;line-height: 1.15;}
  .conf-feature__desc {color: rgba(255,255,255,.92);font-size: 16px;margin: 14px 0 24px;font-weight: 300;max-width: 440px;}
  
  .conf-loc {display: flex;align-items: center;gap: 7px;font-size: 14.5px !important;color: rgba(255,255,255,.9);margin-top: 14px;font-weight: 500;}
  .conf-loc svg { width: 17px; height: 17px; color: var(--green); flex: none; }
  .conf-loc--sm {color: #444;font-size: 13.5px;margin-top: 0;}
  .conf-loc--sm svg { color: var(--green-600); }
  
  /* supporting */
  .conf-support {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 22px;
  }
  .conf-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  }
  .conf-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #dfe4e9; }
  .conf-card--wide { grid-column: 1 / -1; flex-direction: row; }
  
  .conf-card__media { position: relative; overflow: hidden; }
  .conf-card__media .pill--ghost {
    position: absolute;
    top: 12px;
    inset-inline-end: 12px;
    z-index: 2;
  }
  .conf-card--wide .conf-card__media { width: 44%; flex: none; }
  .conf-card__media img {width: 100%;height: 100%;min-height: 257px;object-fit: cover;transition: transform .5s var(--ease);}
  .conf-card:hover .conf-card__media img { transform: scale(1.05); }
  
  .conf-card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
  .conf-card--wide .conf-card__body { padding: 24px 24px; justify-content: center; }
  .conf-card__title { font-size: 19px; font-weight: 700; color: var(--ink); line-height: 1.25; }
  .conf-card--wide .conf-card__title { font-size: 22px; }
  .conf-card__desc {font-size: 16px;color: #444;line-height: 1.6;}
  .conf-card .btn { align-self: flex-start; margin-top: 4px; }

  .conf-all-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 46px;
    padding: 0 30px;
    border: 1px solid var(--green);
    border-radius: 999px;
    background: #fff;
    color: var(--green-700);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1px;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(20, 27, 34, .06);
    transition: background-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  }
  .conf-all-cta__arrow {
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    transition: transform .25s var(--ease), color .25s var(--ease);
  }
  .conf-all-cta:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
    box-shadow: 0 6px 16px rgba(116, 183, 46, .22);
  }
  .conf-all-cta:hover .conf-all-cta__arrow {
    color: #fff;
    transform: translateX(-4px);
  }
  
  /* =========================================================
     CONTENT / EDITORIAL
     ========================================================= */
  .content { background: #fff; }
  
  .tabs {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-bottom: 36px; justify-content: flex-start;
  }
  .tab {
    background: #fff;
    border: 1px solid var(--line);
    color: #444;
    font-weight: 500;
    font-size: 14.5px;
    padding: 9px 20px;
    border-radius: 999px;
    transition: all .22s var(--ease);
  }
  .tab:hover { border-color: var(--green); color: var(--green-700); }
  .tab.is-active {
    background: linear-gradient(135deg, var(--green), var(--green-600));
    color: #fff;
    border-color: transparent;
    /* box-shadow: 0 6px 14px rgba(116,183,46,.3); */
  }
  
  /* --- top: featured + side list --- */
  .editorial-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
    align-items: start;
  }
  .feature-article {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  }
  .feature-article:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
  .feature-article__media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 8.2;
  }
  .feature-article__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
  .feature-article:hover .feature-article__media img { transform: scale(1.04); }
  .feature-article__body { padding: 20px 24px 22px; }
  .feature-article__title { font-size: 20px; font-weight: 700; line-height: 1.34; }
  .feature-article__desc {color: #444;font-size: 16px;margin-top: 12px;line-height: 1.65;}
  
  .meta-row {display: flex;gap: 20px;margin: 12px 0 0;}
  .meta {display: inline-flex;align-items: center;gap: 6px;font-size: 14px;color: var(--muted);font-weight: 500;}
  .meta svg {width: 15px;height: 15px;color: var(--green-600);}
  
  .read-more { display: inline-flex; align-items: center; gap: 7px; color: var(--green-700); font-weight: 600; font-size: 14.5px; margin-top: 12px; transition: color .2s; }
  .read-more .btn__arrow { transition: transform .25s var(--ease); }
  .read-more:hover { color: var(--green-600); }
  .read-more:hover .btn__arrow { transform: scaleX(var(--arrow-scale)) translateX(var(--arrow-shift)); }
  
  .side-list { display: flex; flex-direction: column; gap: 12px; }
  .mini-article {
    display: grid;
    grid-template-columns: 2fr 3.5fr;
    gap: 15px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    min-height: 157px;
    box-shadow: var(--shadow-sm);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  }
  .mini-article:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #dfe4e9; }
  .mini-article__body {display: flex;flex-direction: column;justify-content: center;min-width: 0;/* gap: 5px; */}
  .mini-article__body h4 {font-size: 18px;font-weight: 700;line-height: 1.3;}
  .mini-article__body p {
    font-size: 16px;
    color: #444;
    margin-top: 12px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .mini-article__media {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
  }
  .mini-article__media .cat-tag--light {
    position: absolute;
    top: 8px;
    /* inset-inline-end: 8px; */
    margin: 0;
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    padding: 1px 8px;
    border-radius: 9px;
    border: 1px solid rgba(255,255,255,.55);
    background: rgba(244,250,236,.9);
    color: var(--green-700);
    z-index: 2;
  }
  .mini-article__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 100px;
    transition: transform .5s var(--ease);
  }
  .mini-article:hover .mini-article__media img { transform: scale(1.06); }
  .read-more--mini {
    margin-top: 12px;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1;
  }
  
  /* --- card rows --- */
  .card-row {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    margin: 30px 0;
  }
  .art-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; display: flex; flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  }
  .art-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #dfe4e9; }
  .art-card__media { position: relative; display: block; overflow: hidden; aspect-ratio: 16 / 10; }
  .art-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
  .art-card:hover .art-card__media img { transform: scale(1.06); }
  .art-card__body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
  .art-card__body h4 { font-size: 17px; font-weight: 700; line-height: 1.32; }
  .art-card__body p {font-size: 16px;color: #444;flex: 1;}
  
  /* --- conference banner --- */
  .conf-banner {
    display: grid;
    direction: ltr;
    grid-template-columns: 170px minmax(320px, 1fr) 190px 220px;
    grid-template-areas: "brand text date cta";
    align-items: stretch;
    background: #fff;
    border: 1px solid #e2e7de;
    border-radius: 14px;
    margin: 10px 0 38px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(20, 27, 34, .05);
  }
  .conf-banner > * {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-inline-end: 1px solid #e8ece5;
    direction: rtl;
  }
  .conf-banner > *:last-child { border-inline-end: 0; }
  .conf-banner__brand { grid-area: brand; }
  .conf-banner__brand img { height: 56px; width: auto; }
  .conf-banner__text {
    grid-area: text;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
  }
  .conf-banner__text h3 {
    font-size: 20px;
    line-height: 1.2;
    color: var(--green-700);
    font-weight: 800;
  }
  .conf-banner__text p {
    color: var(--ink-2);
    font-size: 14px;
    margin: 0;
    font-weight: 400;
  }
  .conf-banner__date {
    grid-area: date;
    gap: 12px;
    color: var(--text);
    justify-content: center;
    white-space: nowrap;
  }
  .conf-banner__date svg { width: 24px; height: 24px; color: var(--green-600); }
  .conf-banner__date b { display: block; font-size: 16px; font-family: "Rubik"; line-height: 1.15; }
  .conf-banner__date span { font-size: 13px; color: var(--muted); line-height: 1.2; }
  .conf-banner .btn--green {
    grid-area: cta;
    height: 40px;
    padding: 0 20px;
    font-size: 14px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(116, 183, 46, .2);
    margin-inline: auto;
  }
  
  /* --- topics --- */
  .topics { margin: 18px 0 44px; }
  .topics__head {margin-bottom: 40px;}
  .topics__head .section__eyebrow { margin-bottom: 8px; }
  .subsection-title { font-size: 27px; font-weight: 800; letter-spacing: -0.02em; }
  .topics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
  .topic-col {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px 26px 24px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(20, 27, 34, .04), 0 10px 26px rgba(20, 27, 34, .05);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  }
  .topic-col::before {
    content: "";
    position: absolute;
    top: 0;
    inset-inline: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--green-600));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .4s var(--ease);
  }
  .topic-col::after {
    content: "";
    position: absolute;
    top: -60px;
    inset-inline-start: -60px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(116,183,46,.12), rgba(116,183,46,0) 70%);
    opacity: 0;
    transition: opacity .4s var(--ease);
    pointer-events: none;
  }
  .topic-col:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 23px rgba(20, 27, 34, .12);
    border-color: #e2e8dd;
  }
  .topic-col:hover::before {transform: scaleX(1);}
  .topic-col:hover::after { opacity: 1; }
  .topic-col__head {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 18px; padding-bottom: 18px;
    border-bottom: 1px solid var(--line-2);
  }
  .topic-ico {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    flex: none;
    background: linear-gradient(145deg, var(--green) 0%, var(--green-600) 100%);
    color: #fff;
    display: grid;
    place-items: center;
    /* box-shadow: 0 8px 18px rgba(116, 183, 46, .3); */
    transition: transform .3s var(--ease);
  }
  .topic-col:hover .topic-ico {/* transform: scale(1.06) rotate(-3deg); */transform: scale(1.06) rotate(-360deg);}
  .topic-ico svg {width: 29px;height: 29px;stroke: #fff;}
  .topic-col__head h4 { font-size: 20px; font-weight: 800; }
  .topic-links { flex: 1; }
  .topic-links li { border-bottom: 1px solid var(--line-2); }
  .topic-links li:last-child { border-bottom: 0; }
  .topic-links a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 0;
    font-size: 16px;
    color: var(--text);
    font-weight: 500;
    transition: color .2s, padding .2s;
  }
  .topic-links a::before {
    content: ""; flex: none;
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--green); opacity: .45;
    transition: opacity .2s var(--ease), transform .2s var(--ease);
  }
  .topic-links a:hover { color: var(--green-700); padding-inline-start: 5px; }
  .topic-links a:hover::before { opacity: 1; transform: scale(1.35); }
  .link-all--sm {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line-2);
    font-size: 14.5px;
    font-weight: 600;
  }
  
  /* --- feature topic block --- */
  .feature-topic {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
    border: 1px solid var(--line); border-radius: var(--radius-lg);
    overflow: hidden; margin-bottom: 30px; background: #fff;
    box-shadow: var(--shadow-sm);
  }
  .feature-topic__media { overflow: hidden; min-height: 320px; }
  .feature-topic__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
  .feature-topic:hover .feature-topic__media img { transform: scale(1.04); }
  .feature-topic__body { padding: 40px 44px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
  .feature-topic__body .cat-tag { position: static; margin-bottom: 14px; }
  .feature-topic__body h3 { font-size: 27px; font-weight: 700; line-height: 1.28; }
  .feature-topic__body p { color: var(--muted); font-size: 15.5px; margin: 16px 0 4px; line-height: 1.75; }
  
  /* =========================================================
     NEWSLETTER
     ========================================================= */
  .newsletter-section {
    position: relative;
    /* background: linear-gradient(180deg, #f2f7ec 0%, #eef4e5 100%); */
    background-color: #f1f5e7;
    padding: 0;
    overflow: hidden;
  }

  .nl-wrap {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    width: calc(100% - 80px);
    margin: 0 auto;
    display: grid;
    /* grid-template-columns: 88fr 1fr; */
    gap: 64px;
    align-items: center;
  }

  .nl-content {max-width: 720px;padding: 60px 0px;text-align: center;}
  .nl-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: #e4f1d3; color: var(--green-700);
    font-size: 13px; font-weight: 700;
    padding: 7px 15px; border-radius: 999px;
  }
  .nl-eyebrow svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .nl-title {
    margin-top: 18px;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.22;
    color: var(--ink);
    /* max-width: 560px; */
  }
  .nl-title__hl { color: var(--green); }
  .nl-desc {
    margin-top: 16px;
    font-size: 17.5px;
    line-height: 1.7;
    color: var(--text);
    /* max-width: 560px; */
  }

  .nl-form {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 22fr 28fr 19fr;
    gap: 12px;
    align-items: stretch;
    max-width: 720px;
  }
  .nl-field { position: relative; min-width: 0; }
  .nl-field input {
    width: 100%;
    height: 56px;
    border: 1px solid #d7e1ca;
    border-radius: 42px;
    background: #fff;
    padding: 22px 23px 6px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text);
    /* box-shadow: 0 1px 2px rgba(20,27,34,.05); */
    outline: none;
    transition: border-color .2s, box-shadow .2s;
  }
  .nl-field label {
    position: absolute;
    inset-inline-start: 23px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: var(--muted-2);
    pointer-events: none;
    transition: top .18s var(--ease), font-size .18s var(--ease), color .18s var(--ease);
  }
  .nl-field input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(116,183,46,.16);
  }
  .nl-field input:focus + label,
  .nl-field input:not(:placeholder-shown) + label,
  .nl-field input:-webkit-autofill + label {
    top: 11px;
    transform: translateY(0);
    font-size: 11.5px;
    font-weight: 600;
    color: var(--green-700);
  }
  .nl-field input:-webkit-autofill {
    -webkit-text-fill-color: var(--text);
    box-shadow: 0 0 0 30px #fff inset;
  }

  .nl-submit {
    /* height: 56px; */
    /* border: 0; */
    /* border-radius: 90px; */
    /* background: var(--green); */
    /* color: #fff; */
    /* font-family: inherit; */
    /* font-size: 15px; */
    /* font-weight: 600; */
    /* display: inline-flex; */
    /* align-items: center; */
    /* justify-content: center; */
    /* gap: 8px; */
    /* cursor: pointer; */
    /* box-shadow: 0 4px 12px rgba(116,183,46,.22); */
    /* transition: background .2s, box-shadow .2s, transform .15s; */
  }
  .nl-submit:hover {/* background: var(--green-600); *//* box-shadow: 0 6px 16px rgba(116,183,46,.28); */}
  .nl-submit:active { transform: translateY(1px); }
  .nl-submit:focus-visible { outline: 3px solid rgba(116,183,46,.45); outline-offset: 2px; }
  .nl-submit__arrow {font-size: 17px;line-height: 1;transition: transform .2s;transform: scaleX(var(--arrow-scale));}
  .nl-submit:hover .nl-submit__arrow {transform: scaleX(var(--arrow-scale)) translateX(var(--arrow-shift));}

  .nl-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--muted-2);
    font-size: 13.5px;
    display: none;
  }
  .nl-note svg { width: 15px; height: 15px; fill: none; stroke: var(--green-600); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

  .nl-divider {
    display: flex; align-items: center; gap: 14px;
    margin-top: 26px; max-width: 720px;
    color: var(--muted-2); font-size: 13px; font-weight: 600;
  }
  .nl-divider::before, .nl-divider::after {
    content: ""; height: 1px; flex: 1;
    background: linear-gradient(90deg, transparent, #cddcbb, transparent);
  }

  .nl-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    height: 56px;
    padding: 0 22px;
    border: 1.5px solid var(--green);
    border-radius: 50px;
    background: #fff;
    /* color: var(--green-700); */
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
    transition: background .2s, color .2s, box-shadow .2s;
  }
  .nl-whatsapp:hover {/* background: var(--green); *//* color: #fff; *//* box-shadow: 0 4px 12px rgba(116,183,46,.22); */}
  .nl-whatsapp svg {width: 25px;height: 25px;fill: currentColor;}

  .nl-visual {display: flex;align-items: center;justify-content: center;position: absolute;bottom: 0;left: -10px;background-color: #fff;}
  .nl-visual__img {
    width: 100%;
    max-width: 650px;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    -webkit-user-drag: none;
    user-select: none;
  }
  
  /* =========================================================
     FOOTER
     ========================================================= */
  .footer {
    position: relative;
    background: var(--footer-bg);
    color: var(--footer-text);
    padding-top: 66px;
  }
  .footer__grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(5, 1fr);
    gap: 34px;
    padding-bottom: 48px;
  }
  .footer__grid { direction: rtl; }
  
  .brand--footer .brand__name { font-size: 24px; }
  .brand--footer .brand__mark {height: 50px;}
  .footer__brand { padding-inline-start: 0; }
  .footer__about {font-size: 16px;line-height: 1.5;color: var(--footer-text);margin: 20px 0 22px;max-width: 320px;}
  .footer__social { display: flex; gap: 12px; }
  .footer__social a {
    width: 35px;
    height: 35px;
    border-radius: 10px;
    background: var(--green);
    display: grid;
    place-items: center;
    transition: transform .2s var(--ease), background .2s;
    /* background: rgba(116, 183, 46, .14); */
  }
  .footer__social a i {font-size: 21px;color: #fff;line-height: 1;}
  .footer__social a:hover { transform: translateY(-3px); background: var(--green-600); }
  
  .footer__col h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
  }
  .footer__col h4::after { content: ""; position: absolute; bottom: 0; inset-inline-start: 0; width: 26px; height: 2.5px; background: var(--green); border-radius: 2px; }
  .footer__col li { margin-bottom: 11px; }
  .footer__col a {font-size: 16px;color: var(--footer-text);transition: color .2s, padding .2s;}
  .footer__col a:hover { color: #fff; padding-inline-start: 4px; }
  
  .footer__contact a { display: flex; align-items: center; gap: 10px; }
  .c-ico {width: 30px;height: 30px;border-radius: 8px;flex: none;display: grid;place-items: center;/* background: rgba(116,183,46,.14); */color: var(--green);}
  .c-ico i {font-size: 18px;line-height: 1;}
  
  .footer__bottom {
    border-top: 1px solid var(--footer-line);
    padding: 26px 0 34px;
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    gap: 24px;
    /* flex-wrap: wrap; */
    text-align: center;
  }
  .footer__badges { display: flex; gap: 20px; }
  .trust-badge {
    font-size: 12.5px; color: var(--muted-2); max-width: 200px; line-height: 1.4;
    padding-inline-start: 44px; position: relative; display: flex; align-items: center; min-height: 40px;
  }
  .trust-badge::before {
    content: ""; position: absolute; inset-inline-start: 0; top: 50%; transform: translateY(-50%);
    width: 34px; height: 34px; border-radius: 8px;
    background: rgba(116,183,46,.16); border: 1px solid rgba(116,183,46,.3);
  }
  .footer__copy {font-size: 14px;color: var(--muted-2);/* margin: 0 auto; */}
  
  .to-top {
    position: absolute;
    inset-inline-start: 50%;
    transform: translateX(50%);
    top: -22px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-600));
    border: 3px solid var(--footer-bg);
    color: #fff;
    display: grid;
    place-items: center;
    /* box-shadow: 0 8px 20px rgba(76,132,31,.4); */
    transition: transform .25s var(--ease);
  }
  .to-top:hover { transform: translateX(50%) translateY(-3px); }
  .to-top svg { width: 20px; height: 20px; }
  
  /* =========================================================
     RESPONSIVE
     ========================================================= */
  @media (max-width: 1100px) {
    .nav__menu { gap: 18px; }
    .nav__menu a { font-size: 14px; }
    .conf-grid { grid-template-columns: 1fr; }
    .conf-feature { min-height: 460px; }
    .editorial-top { grid-template-columns: 1fr; }
    .card-row { grid-template-columns: repeat(2, 1fr); }
    .topics-grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
    .footer__brand { grid-column: 1 / -1; }
  }
  
  @media (max-width: 860px) {
    .nav__login { display: none; }
    .nav__burger { display: flex; position: relative; z-index: 10002; transition: opacity .25s var(--ease); }
    .nav.is-menu-open .nav__burger { opacity: 0; pointer-events: none; }

    /* --- Mobile slide-in drawer --- */
    .nav__drawer {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 0;
      left: 0;
      right: auto;
      height: 100dvh;
      width: min(340px, 86vw);
      padding: 18px 20px 26px;
      background: rgba(8, 14, 22, .95);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-inline-end: 1px solid rgba(255,255,255,.08);
      box-shadow: 26px 0 70px rgba(0,0,0,.4);
      transform: translateX(-105%);
      transition: transform .45s cubic-bezier(.22,.61,.36,1);
      z-index: 10001;
      overflow-y: auto;
      overscroll-behavior: contain;
    }
    .nav.is-menu-open .nav__drawer { transform: translateX(0); }

    .nav__drawer-head {
      display: flex; align-items: center; justify-content: space-between;
      padding-bottom: 16px; margin-bottom: 8px;
      border-bottom: 1px solid rgba(255,255,255,.1);
    }
    .nav__drawer-head .brand__mark { height: 46px; width: auto; }
    .nav__close {
      display: grid; place-items: center;
      width: 42px; height: 42px; border-radius: 12px;
      background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
      color: #fff; font-size: 19px; line-height: 1; cursor: pointer;
      transition: background .2s, transform .3s var(--ease);
    }
    .nav__close:hover { background: rgba(255,255,255,.14); transform: rotate(90deg); }

    .nav__menu {
      display: flex; flex-direction: column; align-items: stretch; gap: 2px;
      margin-top: 8px;
    }
    .nav__menu li {
      opacity: 0; transform: translateX(-16px);
      transition: opacity .4s var(--ease), transform .4s var(--ease);
    }
    .nav.is-menu-open .nav__menu li {opacity: 1;transform: none;border-bottom: 1px solid rgb(255 255 255 / 11%);}
    .nav.is-menu-open .nav__menu li:nth-child(1) { transition-delay: .08s; }
    .nav.is-menu-open .nav__menu li:nth-child(2) { transition-delay: .12s; }
    .nav.is-menu-open .nav__menu li:nth-child(3) { transition-delay: .16s; }
    .nav.is-menu-open .nav__menu li:nth-child(4) { transition-delay: .20s; }
    .nav.is-menu-open .nav__menu li:nth-child(5) { transition-delay: .24s; }
    .nav.is-menu-open .nav__menu li:nth-child(6) { transition-delay: .28s; }
    .nav.is-menu-open .nav__menu li:nth-child(7) { transition-delay: .32s; }
    .nav.is-menu-open .nav__menu li:nth-child(8) {transition-delay: .36s;border-bottom: none;}

    .nav__menu a {
      display: block;
      font-size: 16px;
      font-weight: 400;
      text-align: right;
      color: rgba(255,255,255,.9);
      padding: 13px 12px;
      border-radius: 10px;
      transition: background .2s, color .2s, padding .2s;
    }
    .nav__menu a::after { display: none; }
    .nav__menu a:hover,
    .nav__menu a.is-active {
      color: #74b72e;
      /* background: rgb(255 255 255 / 16%); */
      padding-inline-start: 16px;
      font-weight: 600;
    }

    .nav__drawer-login {
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      margin-top: 20px; height: 52px; border-radius: 12px;
      background: var(--green); color: #fff; font-weight: 600; font-size: 16px;
      text-decoration: none;
      opacity: 0; transform: translateY(12px);
      transition: opacity .4s var(--ease) .34s, transform .4s var(--ease) .34s, background .2s;
    }
    .nav.is-menu-open .nav__drawer-login { opacity: 1; transform: none; }
    .nav__drawer-login i { font-size: 17px; }
    .nav__drawer-login:hover { background: var(--green-600); }

    .nav__backdrop {
      display: block; position: fixed; inset: 0;
      background: rgba(10,16,22,.34); backdrop-filter: blur(2px);
      opacity: 0; visibility: hidden;
      transition: opacity .35s var(--ease), visibility .35s var(--ease);
      z-index: 10000;
    }
    .nav.is-menu-open .nav__backdrop { opacity: 1; visibility: visible; }

    .hero__title { font-size: 42px; }
    .hero__quick { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .quick:not(:last-child)::after { display: none; }
    .conf-banner {
      grid-template-columns: 1fr 1fr;
      grid-template-areas:
        "brand text"
        "date cta";
    }
    .conf-banner > * { min-height: 76px; }
    .feature-topic { grid-template-columns: 1fr; }
    .feature-topic__media { min-height: 240px; }

    .nl-wrap { grid-template-columns: 1fr; gap: 40px; }
    .nl-content { order: 1; max-width: none; }
    .nl-visual { order: 2; }
    .nl-title { font-size: 34px; }
    .nl-form { grid-template-columns: 1fr; max-width: 460px; }
    .nl-submit { width: 100%; }
    .nl-divider { max-width: 460px; }
    .nl-whatsapp { width: 100%; max-width: 460px; }
    .nl-visual__img { max-width: 420px; }
  }
  
  @media (max-width: 560px) {
    .container { padding-inline: 20px; }
    .section {padding: 40px 0;}
    .section__eyebrow .dash {
    width: 15px;
}
    .nav__inner { padding: 16px 20px; }
    .brand__mark { height: 38px; }
    .brand__name { font-size: 22px; }
  
    .hero { min-height: auto; }

.brand{ flex:1}
    
    .hero__content { padding: 112px 20px 16px; }
    .hero__eyebrow {font-size: 12.8px;}
    .hero__title { font-size: 32px; }
    .hero__sub {font-size: 17px;}
    .hero__sub br { display: none; }
    .hero__search { flex-wrap: wrap; border-radius: 20px; padding: 12px; gap: 12px; }
    .hero__search input { width: 100%; }
    .hero__search .btn { width: 100%; justify-content: center; }
    .hero__quick {grid-template-columns: repeat(5, 1fr);margin-bottom: 80px;gap: 0;}

.quick{
  padding:0;
}
.quick__ico{
    width: 45px;
    height: 45px;
}
    .quick__ico i {
      font-size: 21px;
    }
    .quick__label {
      font-size: 12.5px;
      font-weight: 400;
    }
    
    .hero__wave svg {height: 50px;}
  
    .section__title {font-size: 24px;}
    .section__desc{font-size: 15px;}
    .conf-card--wide { flex-direction: column;        grid-column: auto; }
    .conf-card--wide .conf-card__media { width: 100%; }
    .conf-support { grid-template-columns: 1fr; }
    .conf-feature__title { font-size: 27px; }
    .conf-feature__body { padding: 26px 22px; }
    .conf-all-cta { min-width: 240px; padding: 0 22px; }
  
    .tabs { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; -webkit-overflow-scrolling: touch; }
    .tab { flex: none; }
    .feature-article__title { font-size: 22px; }
    .feature-article__body { padding: 22px; }
    .mini-article { grid-template-columns: 92px 1fr; min-height: 112px; }
    /* keep the thumbnail proportional instead of stretching to the text height */
    .mini-article__media { align-self: start; aspect-ratio: 3 / 4; }
    .mini-article__media img { min-height: 0; }
    /* keep conference images proportional when the cards stack on phones */
    .conf-card__media { aspect-ratio: 16 / 10; }
    .conf-card__media img { min-height: 0; }
    .card-row { grid-template-columns: 1fr; }
    .conf-banner {
      grid-template-columns: 1fr;
      grid-template-areas:
        "brand"
        "text"
        "date"
        "cta";
    }
    .conf-banner > * {
      min-height: auto;
      padding: 14px 16px;
      justify-content: center;
      text-align: center;
      border-inline-end: 0;
    }
    .conf-banner > *:not(:first-child) { border-top: 1px solid #e7ece4; }
    .conf-banner__text { align-items: center; }
    .conf-banner__text h3 { font-size: 20px; }
    .conf-banner__date { justify-content: center; }
    .conf-banner .btn--green { width: auto; justify-content: center; }
    .feature-topic__body { padding: 26px 22px; }
    .feature-topic__body h3 { font-size: 22px; }
  

 /* keep conference images proportional when cards stack on phones
       (the source images are near-square, so an unconstrained height
       stretched the media box very tall on iOS) */
       .conf-card__media {
        aspect-ratio: 16 / 10;
      }
      .conf-card__media img {
        height: 100%;
        min-height: 0;
      }



    .newsletter-section {padding: 0 0 160px;}
    .nl-wrap { width: calc(100% - 40px); }
    .nl-title { font-size: 27px; }
    .nl-desc { font-size: 16px; }
    .nl-form { max-width: none; }
    .nl-divider { max-width: none; }
    .nl-whatsapp { max-width: none; }
    .nl-visual__img { max-width: 320px; }
  
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 26px; }
    .footer__bottom { flex-direction: column; align-items: flex-start; }
    .footer__badges { flex-direction: column; gap: 12px; }
  }
  



.hrus-event-banner {
  position: relative;
  display: grid;
  grid-template-columns: 225px minmax(390px, 1fr) 210px 225px;
  direction: ltr;
  width: 100%;
  /* max-width: 1134px; */
  height: 143px;
  margin: 60px auto;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--hrus-border);
  border-radius: 5px;
  box-shadow: 0 1px 7px rgba(25, 44, 20, 0.08);
  isolation: isolate;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.hrus-event-banner > section {
  position: relative;
  min-width: 0;
  height: 100%;
  direction: rtl;
  background: rgba(255, 255, 255, 0.92);
}

.hrus-event-banner > section + section {
  border-left: 1px solid #e5e9e5;
}

/* Logo */
.banner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17px 25px 15px;
}

.banner-logo::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -47px;
  width: 106px;
  height: 106px;
  border-radius: 50%;
  background: radial-gradient(circle at 58% 40%, rgba(99, 181, 42, 0.13), rgba(99, 181, 42, 0) 68%);
  pointer-events: none;
}

.banner-logo img {
  display: block;
  width: 142px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Main copy */
.banner-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 17px 38px 20px;
  text-align: center;
  overflow: hidden;
}

.banner-copy::before {
  content: "";
  position: absolute;
  left: -74px;
  bottom: -122px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  border: 1px solid rgba(83, 171, 38, 0.14);
  box-shadow:
    0 0 0 12px rgba(83, 171, 38, 0.025),
    0 0 0 28px rgba(83, 171, 38, 0.018);
  pointer-events: none;
}

.banner-copy::after {
  content: "";
  position: absolute;
  right: -95px;
  top: -116px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(83, 171, 38, 0.10);
  pointer-events: none;
}

.banner-copy__pattern {
  position: absolute;
  left: -65px;
  bottom: -49px;
  width: 118px;
  height: 70px;
  transform: skewX(-27deg) rotate(-2deg);
  opacity: 0.68;
  background:
    radial-gradient(circle, rgba(79, 165, 34, 0.58) 1.2px, transparent 1.5px) 0 0 / 6px 6px,
    linear-gradient(135deg, rgba(108, 193, 48, 0.94), rgba(69, 151, 29, 0.82));
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  pointer-events: none;
}

.banner-copy h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #66b337;
  font-size: clamp(28px, 2.75vw, 30px);
  line-height: 1;
  font-weight: 700;
  /* text-shadow: 0 1px 0 rgba(255,255,255,.9); */
  white-space: nowrap;
}

.banner-copy p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #444;
  font-size: clamp(25px, 2.35vw, 25px);
  line-height: 1;
  /* font-weight: 600; */
  white-space: nowrap;
}

/* Date */
.banner-date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 18px 13px;
  overflow: hidden;
}

.calendar-icon {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  fill: none;
  stroke: #61b832;
  stroke-width: 3px;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: -7px;
}

.banner-date__text {
  /* position: relative; */
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 3px;
  color: #444;
  text-align: right;
  font-weight: 500;
}

.banner-date__text strong {
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
}

.banner-date__text span {
  font-size: 16px;
  line-height: 1;
  /* font-weight: 400; */
}

.banner-date__arc {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.banner-date__arc--one {
  left: -122px;
  top: -190px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(75, 170, 37, 0.14);
}

.banner-date__arc--two {
  left: -103px;
  top: -173px;
  width: 268px;
  height: 268px;
  border: 1px solid rgba(75, 170, 37, 0.08);
}

/* CTA */
.banner-action {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 29px;
  overflow: hidden;
}

.banner-action::before {
  content: "";
  position: absolute;
  left: 48px;
  top: -91px;
  width: 150px;
  height: 250px;
  border-left: 2px solid rgba(73, 174, 34, 0.28);
  border-radius: 50%;
  transform: rotate(8deg);
  pointer-events: none;
}

.banner-action__line {
  position: absolute;
  right: -63px;
  bottom: -145px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(68, 169, 32, 0.11);
  pointer-events: none;
}

.banner-button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-width: 183px;
  min-height: 42px;
  padding: 10px 18px;
  color: #fff;
  --btn-bg: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .2s;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-600) 100%);
  color: #fff;
  /* box-shadow: 0 8px 18px rgba(116, 183, 46, .28); */
}

.banner-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hrus-event-banner:hover .banner-button {
  /* transform: translateY(-1px); */
  /* background: linear-gradient(180deg, #79ca3d 0%, #60b52d 100%); */
  /* box-shadow:
    inset 0 1px 0 rgba(255,255,255,.28),
    0 4px 9px rgba(59, 126, 29, .24); */
}

.hrus-event-banner:focus-visible {
  outline: 3px solid rgba(99, 181, 42, 0.38);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .demo-page {
    padding: 16px;
  }

  .hrus-event-banner {
    grid-template-columns: 185px minmax(300px, 1fr) 170px 205px;
  }

  .banner-logo img {
    width: 145px;
  }

  .banner-copy {
    padding-inline: 22px;
  }

  .banner-copy h2 {
    font-size: 29px;
  }

  .banner-copy p {
    font-size: 27px;
  }

  .banner-button {
    min-width: 160px;
    font-size: 15px;
  }
}

@media (max-width: 760px) {
  .hrus-event-banner {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .hrus-event-banner > section {
    min-height: 118px;
  }

  .banner-copy {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 135px;
    border-left: 0 !important;
    border-bottom: 1px solid #e5e9e5;
  }

  .banner-logo {
    grid-column: 1;
    grid-row: 2;
  }

  .banner-date {
    grid-column: 2;
    grid-row: 2;
  }

  .banner-action {
    grid-column: 1 / -1;
    grid-row: 3;
    min-height: 90px !important;
    border-left: 0 !important;
    border-top: 1px solid #e5e9e5;
  }

  .banner-button {
    width: min(280px, 90%);
  }
}

@media (max-width: 470px) {
  .demo-page {
    padding: 10px;
  }

  .hrus-event-banner {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
  }

  .hrus-event-banner > section {
    width: 100%;
    min-height: 96px;
    border-left: 0 !important;
    border-bottom: 1px solid #e5e9e5;
  }

  .banner-copy {
    order: 1;
    min-height: auto !important;
    border-bottom: none !important;
    padding: 0;
  }
  .banner-copy__pattern{
    display:none !important;
  }

  .banner-logo {
    order: 0;
    border-bottom: none !important;
    padding-bottom: 30px;
  }
  .banner-logo::after{display:none;}

  .banner-date {
    order: 3;
  }

  .banner-action {
    order: 4;
    border-bottom: 0;
  }

  .banner-copy h2 {
    font-size: 21px;
  }

  .banner-copy p {
    font-size: 18px;
    margin-top: 10px;
  }
}



.further-articles__head{
  margin-bottom:40px
}