:root{
  --navy:#071c36;
  --navy-2:#0b2d52;

  --blue:#00588e;
  --bright-blue:#17a6dc;

  --orange:#c86c4a;
  --teal:#2aa7ad;

  --ink:#222;
  --muted:#6f7780;

  --panel:#f3f6f8;
  --page-bg:#f5f7f8;

  --white:#fff;

  --max-width:1120px;
}


/* ==================================================
   RESET / GLOBAL
================================================== */

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:"Montserrat",Arial,sans-serif;
  color:var(--ink);
  background:#fff;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

button{
  font:inherit;
}

.container{
  width:min(var(--max-width),calc(100% - 40px));
  margin:0 auto;
}


/* ==================================================
   HEADER / MENU
================================================== */

.summit-header,
.site-header{
  background:var(--navy);
  color:#fff;
}

.summit-header-inner,
.navbar{
  min-height:48px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:40px;

  position:relative;
}

.summit-header-title{
  display:flex;
  align-items:center;
  gap:5px;

  font-size:15px;
  font-weight:800;
  white-space:nowrap;
}

.summit-title-main{
  color:var(--orange);
}

.summit-title-word{
  color:#fff;
}

.summit-header-title .summit-title-word{
  color:#ffffff !important;
}

.brand{
  color:var(--orange);

  font-size:15px;
  font-weight:800;

  white-space:nowrap;
}

.nav-links{
  display:flex;
  align-items:center;

  gap:44px;
}

.nav-links a{
  color:#fff;

  font-size:14px;
  font-weight:500;

  transition:color .2s ease;
}

.nav-links a:hover,
.nav-links a.active{
  color:var(--orange);
}

.menu-toggle{
  display:none;

  border:0;

  background:none;
  color:#fff;

  font-size:25px;

  cursor:pointer;
}


/* ==================================================
   HOME — HERO
================================================== */

.logo-gopa,
.logo-gope{
    max-height:46px !important;
}

.home-hero{
  width:100%;
  margin:0;
  padding:0;

  background:#fff;

  overflow:hidden;
}

.home-hero img{
  display:block;

  width:100%;
  height:auto;

  max-width:none;

  margin:0;
  padding:0;
}


/* ==================================================
   HOME — INTRO / REGISTRATION
================================================== */

.home-intro{
  background:var(--navy);

  color:#fff;

  padding:38px 0 44px;
}

.home-intro-grid{
  display:grid;

  grid-template-columns:1.08fr .92fr;

  gap:58px;

  align-items:center;
}

.home-intro-copy h1{
  margin:0;

  font-size:21px;
  font-weight:700;

  line-height:1.18;
}

.home-intro-copy h1 span{
  color:#fff;
}

.home-intro-copy h1 strong{
  color:var(--orange);
  font-weight:700;
}

.home-intro-copy p{
  max-width:540px;

  margin:28px 0 0;

  font-size:16px;

  line-height:1.45;
}


/* ==================================================
   HOME — REGISTRATION CARD
================================================== */

.home-register-card{
  background:#fff;
  color:var(--ink);

  border:1px solid #d7a798;

  border-radius:5px;

  padding:18px 24px 14px;

  text-align:center;
}

.register-eyebrow{
  display:block;

  color:var(--orange);

  font-size:13px;
  font-weight:800;

  letter-spacing:1px;
}

.register-date{
  display:block;

  margin-top:3px;

  color:#111;

  font-size:14px;
  font-weight:700;
}

.register-online{
  display:block;

  margin:12px 0;

  color:var(--teal);

  font-size:11px;
  font-weight:700;
}

.home-register-button{
  display:block;

  width:100%;

  padding:12px 16px;

  background:var(--orange);

  color:#fff;

  border-radius:4px;

  font-size:14px;
  font-weight:700;

  transition:opacity .2s ease;
}

.home-register-button:hover{
  opacity:.9;
}


/* ==================================================
   COUNTDOWN
================================================== */

.countdown{
  display:grid;

  grid-template-columns:repeat(4,1fr);

  gap:8px;

  margin:12px 0 0;

  padding:8px;

  background:#f7f8f9;
}

.countdown div{
  display:flex;

  flex-direction:column;

  align-items:center;
}

.countdown b{
  color:var(--navy);

  font-size:16px;
  font-weight:800;

  text-shadow:none;
}

.countdown span{
  margin-top:2px;

  color:#6f7882;

  font-size:8px;
  font-weight:700;

  text-transform:uppercase;

  letter-spacing:.7px;
}

/* Aumenta somente as fontes do card de registro */

.register-eyebrow{
  font-size:18px;
}

.register-date{
  font-size:20px;
}

.register-online{
  font-size:20px;
}

.home-register-button{
  font-size:19px;
}

.countdown b{
  font-size:26px;
}

.countdown span{
  font-size:13px;
}

/* ==================================================
   HOME — CONTENT AREA
================================================== */

.home-content-section{
  background:var(--page-bg);

  padding:32px 0 52px;
}


/* ==================================================
   HOME — ABOUT CARD
================================================== */

.home-about-card{
  background:#fff;

  border:1px solid #e9edef;

  padding:20px 38px 22px;
}

.home-about-card h2{
  margin:0;

  color:var(--navy);

  font-size:17px;
  font-weight:800;
}

.home-about-card h2 span{
  color:var(--orange);
}

.home-heading-line{
  position:relative;

  width:100%;
  height:1px;

  margin:6px 0 16px;

  background:#e3e6e8;
}

.home-heading-line::before{
  content:"";

  position:absolute;

  left:0;
  top:-1px;

  width:128px;
  height:2px;

  background:var(--orange);
}

.home-about-card p{
  margin:0 0 10px;

  color:#333;

  font-size:14px;

  line-height:1.45;
}

.learn-more-button{
  display:inline-block;

  margin-top:7px;

  padding:8px 18px;

  background:var(--teal);

  color:#fff;

  border-radius:20px;

  font-size:12px;
  font-weight:700;
}


/* ==================================================
   HOME — FOCUS AREAS
================================================== */

.focus-section{
  padding:22px 0 8px;
}

.focus-title{
  margin:0 0 18px;

  text-align:center;

  color:var(--navy);

  font-size:17px;
  font-weight:800;
}

.focus-title span{
  color:var(--orange);
}

.focus-grid{
  display:grid;

  grid-template-columns:repeat(3,1fr);

  gap:26px;
}

.focus-card{
  min-height:150px;

  padding:18px 24px 20px;

  background:#fff;

  border:1px solid #e9edef;
}

.focus-card h3{
  margin:0 0 8px;

  color:var(--navy);

  font-size:15px;
  font-weight:800;
}

.focus-card h3 span{
  color:var(--orange);
}

.focus-card p{
  margin:0;

  color:#333;

  font-size:13px;

  line-height:1.35;
}


/* ==================================================
   HOME — ORGANIZERS
================================================== */

.home-organizers{
  margin-top:22px;

  padding:20px 28px 14px;

  background:#fff;

  border:1px solid #e9edef;

  text-align:center;
}

.home-organizers h2{
  margin:0 0 18px;

  color:var(--navy);

  font-size:17px;
  font-weight:800;
}

.home-organizer-grid{
  display:grid;

  grid-template-columns:repeat(5,minmax(0,1fr));

  align-items:center;

  gap:22px;
}

.home-organizer-item{
  min-width:0;

  display:flex;

  align-items:center;
  justify-content:center;
}

.home-organizer-item img{
  width:auto;
  height:auto;

  max-width:100%;
  max-height:58px;

  margin:auto;

  object-fit:contain;
}

.organizer-support{
  margin:16px 0 0;

  color:#777;

  font-size:11px;

  font-style:italic;
}


/* ==================================================
   FOOTER
================================================== */

.summit-footer,
.site-footer{
  background:var(--navy);

  color:#fff;

  border-top:2px solid var(--orange);
}

.summit-footer-inner{
  min-height:92px;

  display:grid;

  grid-template-columns:1fr 1fr 1fr;

  align-items:center;

  gap:30px;

  font-size:8px;
}

.footer-policies{
  display:flex;

  gap:70px;
}

.footer-policies a{
  color:#fff;
}

.footer-social{
  text-align:center;
}

.footer-social > span{
  display:block;

  margin-bottom:5px;


  font-size:13px;   /* ajuste conforme desejar */

  font-weight:600;
}

.footer-social div{
  display:flex;

  justify-content:center;

  gap:9px;

  margin-bottom:6px;

  font-size:13px;
}

.footer-social div a{
  font-size:24px;
  font-weight:700;
  line-height:1;
}

.footer-social p{
  margin:0;

  font-size:12px;
}

.footer-built{
  text-align:right;
}


/* ==================================================
   LEGACY FOOTER — SUBPAGES
================================================== */

.social-row{
  min-height:72px;

  display:flex;

  align-items:center;

  gap:22px;

  color:#fff;

  font-size:12px;
}

.social-links{
  display:flex;

  gap:12px;

  font-weight:700;
}

.footer-bottom{
  background:var(--navy);

  color:#fff;
}

.footer-bottom-inner{
  min-height:88px;

  display:flex;

  align-items:center;
  justify-content:space-between;

  gap:28px;

  font-size:10px;
}

.footer-bottom-inner a{
  text-decoration:underline;

  margin-right:70px;
}

.footer-bottom-inner p{
  text-align:right;
}


/* ==================================================
   ABOUT PAGE — NOVO LAYOUT
================================================== */

.about-page-new{
  background:var(--page-bg);
}


/* HERO INTERNO */

.internal-hero{
  background:
    linear-gradient(
      120deg,
      #071c36 0%,
      #07325b 100%
    );

  color:#fff;

  padding:26px 0 30px;

  text-align:center;
}

.internal-hero-content h1{
  margin:0;

  font-size:22px;
  font-weight:800;
}

.internal-hero-content h1 span{
  color:var(--orange);
}

.internal-hero-content p{
  margin:15px 0 0;

  font-size:14px;
  line-height:1.45;

  letter-spacing:.2px;
}


/* ==================================================
   ABOUT — VISUAL STRIP RESPONSIVO
================================================== */

.about-visual-strip{
    background:#fff;
    padding:0;
}

/* no PDF esta faixa é mais larga que o conteúdo textual */
.about-visual-strip .container{
  width:calc(100% - 50px);
  max-width:1440px;
  margin:0 auto;
}

.about-visual-window{
  position:relative;

  width:100%;

  /* mantém o mesmo formato largo em qualquer resolução */
  aspect-ratio:2.85 / 1;

  overflow:hidden;
  background:#fff;
}

.about-visual-window img{
  display:block;

  width:100%;
  height:auto;

  max-width:none;

  margin:0;
  padding:0;
}


/* ==================================================
   MAIN ABOUT AREA
================================================== */

.about-main-section{
  background:var(--page-bg);

  padding:22px 0 48px;
}


/* MAIN TEXT CARD */

.about-main-card{
  background:#fff;

  border:1px solid #e7ebee;

  padding:20px 38px 23px;
}

.about-main-card h2{
  margin:0;

  color:var(--navy);

  font-size:17px;
  font-weight:800;
}

.about-main-card h2 span{
  color:var(--orange);
}

.about-card-line{
  position:relative;

  width:100%;
  height:1px;

  margin:6px 0 14px;

  background:#e2e5e7;
}

.about-card-line::before{
  content:"";

  position:absolute;

  left:0;
  top:-1px;

  width:127px;
  height:2px;

  background:var(--orange);
}

.about-main-card p{
  margin:0 0 14px;

  color:#292929;

  font-size:14px;

  line-height:1.42;
}

.about-main-card .about-lead{
  font-size:15px;
}

.about-main-card .about-lead span{
  color:var(--orange);
}


/* ==================================================
   ABOUT ORGANIZERS
================================================== */

.about-organizers{
  margin-top:20px;

  padding:20px 28px 13px;

  background:#fff;

  border:1px solid #e7ebee;

  text-align:center;
}

.about-organizers h2{
  margin:0 0 17px;

  color:var(--navy);

  font-size:17px;
  font-weight:800;
}

.about-organizer-grid{
  display:grid;

  grid-template-columns:repeat(5,minmax(0,1fr));

  align-items:center;

  gap:22px;
}

.about-organizer-item{
  display:flex;

  align-items:center;
  justify-content:center;

  min-width:0;
}

.about-organizer-item img{
  width:auto;
  height:auto;

  max-width:100%;
  max-height:56px;

  object-fit:contain;
}

.about-organizer-support{
  margin:15px 0 0;

  color:#666;

  font-size:11px;

  font-style:italic;
}


/* ==================================================
   EXPLORE ORGANIZATIONS
================================================== */

.organizations-section{
  padding:23px 14px 0;

  text-align:center;
}

.organizations-section > h2{
  margin:0 0 10px;

  color:var(--navy);

  font-size:17px;
  font-weight:800;
}

.organizations-section > h2 span{
  color:var(--orange);
}

.organizations-intro{
  max-width:980px;

  margin:0 auto 20px;

  color:#303030;

  font-size:13px;

  line-height:1.4;
}


/* ORGANIZATION CARDS */

.organizations-grid{
  display:flex;

  flex-wrap:wrap;

  justify-content:center;

  gap:18px;
}

.organization-card{
  width:190px;
  min-height:100px;

  padding:13px 12px 12px;

  background:#fff;

  border:1px solid #75c6c9;
  border-radius:5px;

  display:flex;

  flex-direction:column;

  align-items:center;
  justify-content:space-between;
}

.organization-card h3{
  margin:0 0 5px;

  color:var(--teal);

  font-size:15px;
  font-weight:800;
}

.organization-card p{
  margin:0 0 9px;

  color:#333;

  font-size:13px;

  line-height:1.3;
}

.organization-card a{
  display:inline-block;

  padding:4px 12px;

  border-radius:2px;

  background:var(--teal);

  color:#fff;

  font-size:11px;
  font-weight:700;
}


/* ==================================================
   ABOUT RESPONSIVE
================================================== */

@media(max-width:900px){

  .about-visual-grid{
    grid-template-columns:1fr;
  }

  .about-summit-logo{
    padding:20px;

    text-align:center;
  }

  .about-summit-logo img{
    max-width:400px;
  }

  .about-map-window{
    height:210px;
  }

  .about-organizer-grid{
    grid-template-columns:repeat(2,1fr);
  }

}


@media(max-width:620px){

  .internal-hero{
    padding:23px 0;
  }

  .internal-hero-content h1{
    font-size:19px;
  }

  .internal-hero-content p{
    font-size:10px;
  }

  .about-summit-logo img{
    max-width:310px;
  }

  .about-map-window{
    height:150px;
  }

  .about-main-section{
    padding-top:16px;
  }

  .about-main-card{
    padding:18px 20px;
  }

  .about-main-card p{
    font-size:10px;
  }

  .about-organizer-grid{
    grid-template-columns:1fr;

    gap:22px;
  }

  .about-organizer-item img{
    max-width:230px;
    max-height:70px;
  }

  .organization-card{
    width:100%;
  }

}

/* ==================================================
   SPEAKERS PAGE
================================================== */

.speakers-page{
  background:#fff;
}

.speakers-directory{
  padding-top:55px;
  padding-bottom:80px;
}

.all-speakers-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:42px 28px;
}

/* Responsivo */

@media(max-width:1100px){
  .all-speakers-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}

@media(max-width:760px){
  .all-speakers-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:480px){
  .all-speakers-grid{
    grid-template-columns:1fr;
  }
}

.all-speaker{
  min-width:0;
}

.all-speaker img{
  display:block;
  width:100%;

  aspect-ratio:0.9 / 1;

  object-fit:cover;
  object-position:top center;

  background:#eee;
}

.all-speaker-info{
  padding-top:15px;
}

.all-speaker-info h2{
  margin:0 0 9px;

  color:var(--blue);

  font-size:17px;
  font-weight:700;

  line-height:1.2;
}

.all-speaker-info p{
  margin:0;

  color:#444;

  font-size:14px;

  line-height:1.5;
}


/* ==================================================
   PROGRAM PAGE — NOVO LAYOUT
================================================== */

.program-page-new{
  background:var(--page-bg);
  padding:22px 0 50px;
}

.program-container{
  width:min(1180px,calc(100% - 40px));
}


/* DIA */

.program-day-new{
  margin-bottom:18px;
}

.program-day-bar{
  background:#0b4c7c;
  color:#fff;

  padding:8px 18px;

  font-size:13px;
  font-weight:700;

  border-radius:2px 2px 0 0;
}


/* LISTA */

.program-list{
  background:#fff;
  border:1px solid #e8ecef;
  border-top:0;
}


/* CADA LINHA */

.program-row{
  display:grid;
  grid-template-columns:150px minmax(0,1fr);

  gap:22px;

  align-items:start;

  padding:11px 16px;

  border-bottom:1px solid #edf0f2;
}

.program-row:last-child{
  border-bottom:0;
}


/* HORÁRIO */

.program-time-new{
  color:var(--orange);

  font-size:13px;
  font-weight:800;

  line-height:1.35;
}

.program-time-new span{
  display:block;

  margin-top:2px;

  color:var(--orange);

  font-size:13px;
  font-weight:700;

  line-height:1.35;
}


/* CONTEÚDO */

.program-entry{
  min-width:0;
}

.program-entry h2{
  margin:0 0 4px;

  color:#111;

  font-size:13px;
  font-weight:800;

  line-height:1.4;
}

.program-entry p{
  margin:0 0 5px;

  color:#343434;

  font-size:13px;

  line-height:1.5;
}


/* PALESTRANTES */

.program-speakers{
  margin:4px 0 0;
  padding-left:18px;
}

.program-speakers li{
  margin:2px 0;

  color:#3f3f3f;

  font-size:13px;

  line-height:1.5;
}


/* BREAKS */

.program-break-row{
  background:#f2f5f7;
}

.program-break-row .program-entry h2{
  margin:0;

  font-size:13px;
  font-weight:700;
}


/* DAY 3 — FORUM */

.program-row-large{
  padding-top:13px;
  padding-bottom:14px;
}

.program-subheading{
  margin:10px 0 6px;

  color:#111;

  font-size:13px;
  font-weight:800;
}

.engagement-list{
  display:flex;
  flex-direction:column;

  gap:6px;

  margin-top:5px;
}

.engagement-item{
  display:flex;
  flex-direction:column;

  gap:2px;
}

.engagement-item strong{
  color:#222;

  font-size:13px;
  font-weight:700;

  line-height:1.4;
}

.engagement-item span{
  color:#4a4a4a;

  font-size:13px;

  line-height:1.4;
}


/* ==================================================
   RESPONSIVE PROGRAM
================================================== */

@media(max-width:760px){

  .program-page-new{
    padding-top:16px;
  }

  .program-container{
    width:min(100% - 24px,1180px);
  }

  .program-day-new{
    margin-bottom:24px;
  }

  .program-day-bar{
    padding:9px 12px;
    font-size:13px;
  }

  .program-row{
    grid-template-columns:1fr;

    gap:8px;

    padding:12px;
  }

  .program-time-new{
    font-size:13px;
  }

  .program-time-new span{
    display:inline;
    margin-left:4px;
    font-size:13px;
  }

  .program-entry h2{
    font-size:13px;
  }

  .program-entry p{
    font-size:13px;
  }

  .program-speakers li{
    font-size:13px;
  }

  .program-break-row .program-entry h2{
    font-size:13px;
  }

  .program-subheading{
    font-size:13px;
  }

  .engagement-item strong,
  .engagement-item span{
    font-size:13px;
  }

}

/* ==================================================
   RECORDINGS PAGE — NOVO LAYOUT
================================================== */

.recordings-page-new{
  background:var(--page-bg);
}

.recordings-coming-section{
  min-height:385px;
  padding:68px 0 92px;
  background:var(--page-bg);
}

.recordings-coming-inner{
  display:flex;
  justify-content:center;
  align-items:flex-start;
}

.recordings-coming-card{
  width:100%;
  max-width:430px;

  padding:44px 30px 40px;

  background:#fff;

  border:1px solid #d8a08c;
  border-radius:7px;

  text-align:center;
}

.recordings-coming-card h2{
  margin:0 0 28px;

  color:var(--navy);

  font-size:21px;
  font-weight:800;
}

.recordings-coming-card p{
  max-width:350px;
  margin:0 auto;

  color:#222;

  font-size:17px;
  line-height:1.45;
}

@media(max-width:620px){

  .recordings-coming-section{
    min-height:auto;
    padding:48px 0 70px;
  }

  .recordings-coming-card{
    max-width:100%;
    padding:34px 22px;
  }

  .recordings-coming-card h2{
    font-size:19px;
  }

  .recordings-coming-card p{
    font-size:14px;
  }

}


/* ==================================================
   RESPONSIVE
================================================== */

@media(max-width:1000px){

  .all-speakers-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  .program-column{
    width:65%;
  }

}


@media(max-width:900px){

  .summit-header-inner,
  .navbar{
    position:relative;
  }

  .menu-toggle{
    display:block;
  }

  .nav-links{
    display:none;

    position:absolute;

    z-index:20;

    top:48px;
    left:0;
    right:0;

    padding:20px;

    background:var(--navy);

    flex-direction:column;
    align-items:flex-start;

    gap:16px;
  }

  .nav-links.open{
    display:flex;
  }

  .home-intro-grid{
    grid-template-columns:1fr;

    gap:30px;
  }

  .home-register-card{
    max-width:520px;
  }

  .focus-grid{
    grid-template-columns:1fr;
  }

  .home-organizer-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .summit-footer-inner{
    grid-template-columns:1fr;

    padding:22px 0;

    text-align:center;
  }

  .footer-policies{
    justify-content:center;

    gap:28px;
  }

  .about-layout{
    min-height:auto;

    padding-top:30px;
    padding-bottom:55px;
  }

  .about-layout-heading h1{
    font-size:32px;
  }

  .about-layout-text p{
    font-size:16px;

    line-height:1.45;
  }

  .about-layout-logos{
    margin-top:80px;

    gap:50px;
  }

  .about-layout-logos img{
    max-width:190px;
    max-height:76px;
  }

  .recording-row{
    grid-template-columns:260px minmax(0,1fr);

    gap:24px;
  }

}


@media(max-width:760px){

  .program-directory{
    padding-top:10px;
    padding-bottom:60px;
  }

  .program-day{
    margin-bottom:48px;
  }

  .program-day-header{
    height:auto;

    min-height:72px;

    padding:17px 18px;

    justify-content:flex-start;

    flex-wrap:wrap;

    gap:7px 12px;

    font-size:14px;
  }

  .program-day-header span:last-child{
    width:100%;

    padding-left:32px;

    font-size:11px;
  }

  .program-column{
    width:100%;

    margin-top:16px;

    gap:14px;
  }

  .program-session{
    padding:15px 16px;
  }

  .program-session-top{
    display:block;
  }

  .program-session time{
    display:block;

    margin-top:8px;

    font-size:13px;
  }

  .program-session h2{
    font-size:14px;
  }

  .program-by,
  .program-description{
    font-size:10px;
  }

}


@media(max-width:720px){

  .speakers-directory{
    padding-top:38px;
  }

  .all-speakers-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));

    gap:34px 22px;
  }

}


@media(max-width:620px){

  .container{
    width:min(var(--max-width),calc(100% - 28px));
  }

  .summit-header-title,
  .brand{
    font-size:12px;
  }

  .home-hero{
    width:100%;
  }

  .home-hero img{
    width:100%;
    height:auto;
    max-width:none;
  }

  .home-intro{
    padding:28px 0 34px;
  }

  .home-intro-copy h1{
    font-size:17px;
  }

  .home-intro-copy p{
    font-size:14px;
  }

  .home-register-card{
    padding:16px;
  }

  .home-about-card{
    padding:18px 20px;
  }

  .home-organizer-grid{
    grid-template-columns:1fr;

    gap:24px;
  }

  .home-organizer-item img{
    max-width:230px;
    max-height:72px;
  }

  .footer-bottom-inner{
    flex-direction:column;

    justify-content:center;
    align-items:flex-start;

    padding:25px 0;
  }

  .footer-bottom-inner a{
    margin-right:24px;
  }

  .footer-bottom-inner p{
    text-align:left;
  }

  .about-layout{
    padding-top:25px;
  }

  .about-layout-heading{
    gap:15px;
  }

  .about-layout-line{
    width:4px;
    height:76px;
  }

  .about-layout-heading h1{
    font-size:27px;
  }

  .about-layout-divider{
    margin-top:13px;
  }

  .about-layout-text{
    margin-left:0;

    margin-top:28px;
  }

  .about-layout-text p{
    font-size:14px;

    line-height:1.55;
  }

  .about-layout-logos{
    grid-template-columns:1fr;

    gap:38px;

    margin-top:65px;
  }

  .about-layout-logos img,
  .about-layout-logos img:first-child,
  .about-layout-logos img:nth-child(2),
  .about-layout-logos img:last-child{
    justify-self:center;

    max-width:210px;
    max-height:80px;
  }

  .recordings-directory{
    padding-top:30px;
    padding-bottom:58px;
  }

  .recordings-group{
    margin-bottom:42px;
  }

  .recording-row{
    grid-template-columns:1fr;

    gap:14px;

    padding-bottom:24px;

    margin-bottom:24px;
  }

  .recording-content h2{
    font-size:15px;
  }

  .recording-content p{
    font-size:11px;
  }

}


@media(max-width:460px){

  .all-speakers-grid{
    grid-template-columns:1fr;
  }

  .all-speaker-info h2{
    font-size:18px;
  }

  .all-speaker-info p{
    font-size:12px;
  }

}