/* =====================================================
   1. ROOT VARIABLES / BASE
===================================================== */

:root{
  --green:#123c2a;
  --green2:#1f5a3d;
  --gold:#d9ad42;
  --gold2:#ffd86a;
  --cream:#fff8e8;
  --cream2:#f6ead2;
  --brown:#7a3a08;
  --ink:#102019;
  --muted:#5d665f;
  --white:#ffffff;
  --shadow:0 24px 70px rgba(0,0,0,.16);
  --soft-shadow:0 16px 42px rgba(38,23,4,.12);
  --radius:28px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--ink);
  background:var(--cream);
}

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

.arts-page{
  overflow:hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(217,173,66,.12), transparent 30%),
    linear-gradient(180deg, #fffaf0 0%, #fff8e8 100%);
}

.arts-wrap{
  width:min(1120px, calc(100% - 40px));
  margin:0 auto;
}


/* =====================================================
   2. SHARED ELEMENTS
===================================================== */

.arts-kicker{
  margin:0 0 10px;
  color:var(--brown);
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:.76rem;
}

.arts-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 25px;
  border-radius:999px;
  font-weight:900;
  text-decoration:none;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

.arts-btn:hover{
  transform:translateY(-3px);
}

.arts-btn-light{
  color:var(--white);
  border:1px solid rgba(255,255,255,.42);
  background:rgba(255,255,255,.12);
  box-shadow:0 12px 26px rgba(0,0,0,.16);
}

.arts-btn-gold{
  color:#1d1605;
  background:linear-gradient(135deg, #ffbd22, #ffe178);
  box-shadow:0 16px 32px rgba(255,190,34,.24);
}


/* =====================================================
   3. HERO - CREATIVE ARTS PAVILION
===================================================== */

.arts-hero{
  position:relative;
  min-height:calc(100svh - 92px);
  display:grid;
  place-items:center;
  padding:96px 0 84px;
  color:var(--ink);
  isolation:isolate;
  overflow:hidden;

  background:
    radial-gradient(circle at 18% 18%, rgba(255,216,106,.46), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(255,151,91,.32), transparent 30%),
    radial-gradient(circle at 72% 82%, rgba(31,90,61,.22), transparent 36%),
    linear-gradient(135deg, #fff8e8 0%, #fff0c9 42%, #f8dcc0 100%);
}

.arts-hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-3;
  opacity:.32;
  background:
    radial-gradient(circle at 14% 28%, rgba(122,58,8,.18) 0 1px, transparent 1.8px),
    radial-gradient(circle at 78% 34%, rgba(18,60,42,.16) 0 1px, transparent 1.8px),
    linear-gradient(90deg, rgba(255,255,255,.38), transparent 38%, rgba(255,255,255,.28));
  background-size:82px 82px, 112px 112px, 100% 100%;
}

.arts-hero::after{
  content:"";
  position:absolute;
  inset:22px;
  z-index:-1;
  pointer-events:none;
  border-radius:34px;
  border:1px solid rgba(122,58,8,.14);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.4),
    inset 0 0 90px rgba(255,255,255,.28);
}

.arts-glow{
  position:absolute;
  border-radius:999px;
  filter:blur(52px);
  opacity:.72;
  pointer-events:none;
  z-index:-2;
}

.arts-glow-one{
  width:420px;
  height:420px;
  left:-120px;
  top:60px;
  background:rgba(255,196,76,.62);
}

.arts-glow-two{
  width:480px;
  height:480px;
  right:-150px;
  bottom:-150px;
  background:rgba(255,132,82,.42);
}

.arts-dust{
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.22;
  background-image:
    radial-gradient(circle, rgba(122,58,8,.45) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(31,90,61,.35) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(255,255,255,.85) 0 1px, transparent 2px);
  background-size:120px 120px, 170px 170px, 230px 230px;
  animation:artsDust 34s linear infinite;
}

@keyframes artsDust{
  from{transform:translateY(0);}
  to{transform:translateY(-130px);}
}

.arts-hero-inner{
  position:relative;
  width:min(1180px, calc(100% - 44px));
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(330px,520px);
  align-items:center;
  gap:clamp(36px, 6vw, 76px);
  padding:42px;
  border-radius:36px;

  background:
    linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,248,232,.48));

  border:1px solid rgba(255,255,255,.78);

  box-shadow:
    0 30px 90px rgba(122,58,8,.16),
    0 0 0 8px rgba(255,216,106,.08);

  backdrop-filter:blur(10px);
}

.arts-hero-inner::before{
  content:"";
  position:absolute;
  left:28px;
  right:28px;
  top:22px;
  height:4px;
  border-radius:999px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(217,173,66,.9),
      rgba(255,132,82,.7),
      rgba(31,90,61,.55),
      transparent
    );
}

.arts-hero-copy{
  text-align:left;
}

.arts-hero .arts-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin:0 0 16px;
  padding:8px 14px;
  border-radius:999px;
  color:#5b2d08;
  background:rgba(255,241,186,.78);
  border:1px solid rgba(217,173,66,.38);
  box-shadow:0 10px 26px rgba(122,58,8,.08);
}

.arts-hero .arts-kicker::before{
  content:"🎨";
  letter-spacing:0;
}

.arts-hero h1{
  margin:0;
  font-family:Georgia, "Times New Roman", serif;
  font-size:clamp(4.25rem, 10vw, 8.6rem);
  line-height:.82;
  letter-spacing:-.065em;
  color:var(--green);
  text-shadow:
    0 3px 0 rgba(255,255,255,.65),
    0 16px 36px rgba(122,58,8,.16);
}

.arts-hero-lead{
  margin:26px 0 0;
  font-size:clamp(1.45rem, 2.4vw, 2rem);
  line-height:1.25;
  color:#9a460c;
  font-weight:950;
}

.arts-hero-copy p:not(.arts-kicker):not(.arts-hero-lead):not(.arts-quote){
  margin:18px 0 0;
  color:#26362e;
  line-height:1.78;
  font-size:1.06rem;
  max-width:660px;
}

.arts-quote{
  display:inline-block;
  margin:24px 0 0;
  padding:12px 16px;
  border-radius:18px;
  color:#6c3208;
  font-style:italic;
  font-weight:900;
  background:rgba(255,255,255,.48);
  border:1px solid rgba(217,173,66,.22);
}

.arts-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:30px;
}

.arts-hero .arts-btn-light{
  color:var(--green);
  border:1px solid rgba(18,60,42,.18);
  background:rgba(255,255,255,.68);
  box-shadow:0 14px 28px rgba(18,60,42,.12);
}

.arts-hero .arts-btn-light:hover{
  background:rgba(255,255,255,.9);
}

.arts-hero .arts-btn-gold{
  color:#201400;
  background:linear-gradient(135deg, #f2a51c, #ffe178);
  box-shadow:0 18px 38px rgba(217,173,66,.3);
}

.arts-hero-gallery{
  display:grid;
  grid-template-columns:repeat(2, minmax(320px, 1fr));
  gap:20px;
  align-items:center;
  justify-content:center;
  margin-left:-12px;
}

.arts-photo{
  position:relative;
  overflow:hidden;
  border-radius:30px;
  background:#fffdf7;
  border:8px solid rgba(255,255,255,.82);
  box-shadow:
    0 24px 60px rgba(122,58,8,.18),
    0 0 0 1px rgba(122,58,8,.1);

  width:100%;
  max-width:430px;   /* was 340px */
  margin:auto;
}

.arts-photo img{
  display:block;
  width:100%;
  height:auto;
}

.arts-photo-large{
  transform:translateY(-24px) rotate(-2deg);
}

.arts-photo-small{
  transform:translate(-12px, 22px) rotate(2deg);
}

.arts-photo:hover img{
  transform:scale(1.025);
}

.arts-photo figcaption{
  position:absolute;
  left:10px;
  right:10px;
  bottom:10px;
  z-index:3;
  padding:12px 14px;
  border-radius:16px;
  font-size:.88rem;
  font-weight:900;
  color:#fff7df;
  text-align:center;
  background:linear-gradient(180deg, rgba(18,60,42,.1), rgba(18,60,42,.82));
}

/* =====================================================
   3A. HERO MOBILE / TABLET
===================================================== */

@media(max-width:1000px){

  .arts-hero{
    min-height:auto;
    padding:72px 0 68px;
  }

  .arts-hero-inner{
    grid-template-columns:1fr;
    width:min(100% - 36px, 760px);
    gap:42px;
  }

  .arts-hero-copy{
    text-align:center;
  }

  .arts-hero h1{
    font-size:clamp(3.75rem, 12vw, 6.8rem);
    line-height:.86;
  }

  .arts-hero-lead{
    font-size:clamp(1.25rem, 4vw, 1.75rem);
  }

  .arts-hero-copy p:not(.arts-kicker):not(.arts-hero-lead):not(.arts-quote){
    max-width:680px;
    margin-left:auto;
    margin-right:auto;
  }

  .arts-actions{
    justify-content:center;
  }

  .arts-hero-gallery{
    max-width:640px;
    width:100%;
    margin:0 auto;
  }

  .arts-photo img{
    height:auto;
    max-height:none;
    object-fit:contain;
  }

}

@media(max-width:620px){

  .arts-hero{
    padding:58px 0 54px;
  }

  .arts-hero-inner{
    width:min(100% - 26px, 520px);
    gap:34px;
  }

  .arts-hero h1{
    font-size:clamp(3.1rem, 17vw, 4.6rem);
    letter-spacing:-.055em;
  }

  .arts-hero-lead{
    margin-top:22px;
    font-size:1.25rem;
    line-height:1.35;
  }

  .arts-hero-copy p:not(.arts-kicker):not(.arts-hero-lead):not(.arts-quote){
    font-size:.98rem;
    line-height:1.7;
  }

  .arts-quote{
    font-size:.98rem;
    line-height:1.55;
  }

  .arts-actions{
    flex-direction:column;
    align-items:center;
  }

  .arts-btn{
    width:100%;
    max-width:290px;
  }

  .arts-hero-gallery{
    grid-template-columns:1fr;
    gap:24px;
    width:100%;
    max-width:430px;
    margin:34px auto 0;
  }

  .arts-photo-large,
  .arts-photo-small{
    transform:none !important;
  }

  .arts-photo{
    width:100%;
    max-width:100%;
    border-radius:24px;
  }

  .arts-photo img{
    width:100%;
    height:auto;
    max-height:none;
    object-fit:contain;
    object-position:center;
  }

  .arts-photo figcaption{
    left:14px;
    right:14px;
    bottom:14px;
    padding:12px 14px;
    font-size:.86rem;
  }

}

@media(max-width:420px){

  .arts-hero h1{
    font-size:3.05rem;
  }

  .arts-hero-gallery{
    max-width:100%;
  }

}

/* =====================================================
   4. ROOTED IN MISSION
===================================================== */

.arts-mission{
  position:relative;
  padding:72px 0 82px;
  background:transparent;
}

.mission-heading{
  max-width:1000px;
  margin:0 auto 34px;
}

.mission-heading h2{
  margin:0 0 20px;
  color:#0b1d3a;
  font-size:clamp(2rem,4vw,3rem);
  line-height:1.05;
  font-weight:950;
  letter-spacing:-.04em;
}

.mission-heading p{
  margin:0;
  max-width:1000px;
  color:#17233a;
  font-size:1.03rem;
  line-height:1.85;
}

.mission-heading p + p{
  margin-top:18px;
}


/* ---------- Cards ---------- */

.mission-cards{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
  max-width:1040px;
  margin:0 auto;
}

.mission-card{
  position:relative;
  min-height:190px;
  padding:28px 24px 24px;
  border-radius:22px;
  overflow:hidden;
  background:linear-gradient(180deg, #fffdf7 0%, #fff7e6 100%);
  border:1px solid rgba(18,60,42,.1);
  box-shadow:0 18px 40px rgba(0,0,0,.08);
  transition:transform .28s ease, box-shadow .28s ease;
}

.mission-link{
  display:block;
  text-decoration:none;
  color:inherit;
  cursor:pointer;
}

.mission-link:hover{
  text-decoration:none;
}

.mission-link h3{
  transition:color .25s ease;
}

.mission-link:hover h3{
  color:var(--gold);
}

.inline-link{
  font-weight:700;
  text-decoration:none;
  transition:
    color .25s ease,
    opacity .25s ease;
}

.inline-link:hover{
  text-decoration:underline;
  opacity:.82;
}

.spotify-link{
  color:#1DB954;
}

.apple-link{
  color:#FA243C;
}

.amazon-link{
  color:#FF9900;
}

.pandora-link{
  color:#3668FF;
}

.youtube-link{
  color:#FF0000;
}

.mission-card:hover{
  transform:translateY(-6px);

  box-shadow:
    0 20px 48px rgba(0,0,0,.12);
}

.mission-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:5px;

  background:
    linear-gradient(90deg,#d9ad42,#ffd76b);
}

.mission-card h3{
  margin:0 0 14px;
  color:var(--green);

  font-size:1.12rem;   /* was 1.25rem */

  line-height:1.15;
  font-weight:950;

  letter-spacing:-.015em;
}

.mission-card p{
  margin:0;

  color:#415047;

  font-size:.98rem;
  line-height:1.75;
}


/* ---------- Responsive ---------- */

@media(max-width:1000px){

  .mission-cards{
    grid-template-columns:1fr;
    max-width:650px;
  }

  .mission-card{
    min-height:auto;
  }

  #get-involved .grid{
   grid-template-columns:1fr;
   max-width:650px;
   margin:0 auto;
  }

  #get-involved .grid > div{
   min-height:auto;
  }

}

@media (max-width:680px){

  #get-involved{
    padding:58px 0 68px;
  }

  #get-involved > div:last-child{
    width:min(100% - 28px, 1120px);
  }

  #get-involved h2{
    font-size:2rem;
  }

  #get-involved > div:last-child > p{
    font-size:.96rem;
    line-height:1.7;
  }

  #get-involved .grid > div{
    padding:30px 24px 26px;
  }

  #get-involved .mt-16 a{
    width:100%;
    max-width:320px;
  }

}


/* =====================================================
   5. CREATIVE PILLARS ACCORDION
===================================================== */

.pillar-details-section{
  position:relative;
  padding:0 0 72px;
  background:transparent;
}

.pillar-details-section .max-w-4xl{
  width:min(900px, calc(100% - 40px));
  margin:0 auto;
}

.pillar-details-section details{
  border:1px solid rgba(18,60,42,.12);
  border-radius:18px;
  overflow:hidden;
  background:#fffdf7;
  box-shadow:0 14px 34px rgba(38,23,4,.1);
}

.pillar-details-section details + details{
  margin-top:16px;
}

.pillar-details-section summary{
  cursor:pointer;
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:18px 24px;
  color:#743707;
  font-size:1rem;
  font-weight:950;
  line-height:1.35;
  background:linear-gradient(135deg, #fff3b8, #ffe484);
  border-bottom:1px solid transparent;
}

.pillar-details-section summary::-webkit-details-marker{
  display:none;
}

.pillar-details-section summary::after{
  content:"+";
  flex:0 0 auto;
  color:#743707;
  font-size:1.35rem;
  font-weight:900;
  line-height:1;
}

.pillar-details-section details[open] summary{
  border-bottom-color:rgba(217,173,66,.55);
}

.pillar-details-section details[open] summary::after{
  content:"−";
}

.pillar-details-section .content{
  padding:28px 30px 30px;
  background:
    linear-gradient(180deg, #fffdf8 0%, #fffaf0 100%);
}

.pillar-details-section .content p{
  margin:0 0 18px;
  color:#26362e;
  font-size:1rem;
  line-height:1.82;
}

.pillar-details-section .content p:last-child{
  margin-bottom:0;
}

.pillar-details-section .highlight{
  margin:22px 0;
  padding:18px 20px;
  border-left:4px solid var(--gold);
  border-radius:16px;
  color:#743707;
  line-height:1.72;
  background:linear-gradient(135deg, #fff3be, #fff9df);
  box-shadow:0 12px 28px rgba(217,173,66,.12);
}

.pillar-details-section .content ul{
  display:grid;
  gap:10px;
  padding:0;
  margin:0 0 18px;
  list-style:none;
}

.pillar-details-section .content li{
  padding:14px 16px;
  border:1px solid rgba(217,173,66,.45);
  border-radius:14px;
  background:#fff8e2;
  color:#334139;
  line-height:1.62;
}




/* =====================================================
   6. GET INVOLVED
===================================================== */

#get-involved{
  position:relative;
  padding:76px 0 82px;
  overflow:hidden;
  background:transparent;
}

#get-involved > div:last-child{
  width:min(1120px, calc(100% - 40px));
  margin:0 auto;
  position:relative;
  z-index:2;
}

#get-involved h2{
  margin:0 0 28px;
  text-align:center;
  color:#7a3a08;
  font-size:clamp(1.9rem, 4vw, 3rem);
  line-height:1.05;
  font-weight:950;
  letter-spacing:-.04em;
}

#get-involved > div:last-child > p{
  max-width:760px;
  margin:0 auto 48px;
  text-align:center;
  color:#17233a;
  font-size:1.03rem;
  line-height:1.85;
}

#get-involved .grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
}

#get-involved .grid > div{
  position:relative;
  min-height:430px;
  padding:34px 30px 30px;
  border-radius:26px;
  background:
    linear-gradient(180deg, #fff3bd 0%, #fff8df 100%);
  border:1px solid rgba(18,60,42,.08);
  box-shadow:0 18px 40px rgba(0,0,0,.08);
  text-align:center;
  transition:
    transform .28s ease,
    box-shadow .28s ease;
}

#get-involved .grid > div:hover{
  transform:translateY(-8px);
  box-shadow:0 28px 60px rgba(0,0,0,.12);
}

#get-involved .grid > div::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:5px;
  border-radius:26px 26px 0 0;
  background:linear-gradient(90deg, #d9ad42, #ffd76b);
  opacity:.85;
}

#get-involved .grid > div > div:first-child{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  margin:0 auto 18px;
  border-radius:999px;
  background:#fffdf7;
  font-size:1.55rem;
  box-shadow:0 14px 30px rgba(0,0,0,.08);
}

#get-involved h3{
  margin:0 0 10px;
  color:#7a3a08;
  font-size:1.26rem;
  line-height:1.2;
  font-weight:850;
}

#get-involved .grid > div > p{
  margin:0 auto 18px;
  color:#17233a;
  font-size:.96rem;
  line-height:1.55;
  max-width:260px;
}

#get-involved ul{
  margin:0;
  padding-left:20px;
  text-align:left;
  color:#102019;
}

#get-involved li{
  margin:0 0 10px;
  padding-left:4px;
  font-size:.95rem;
  line-height:1.55;
}

#get-involved li:last-child{
  margin-bottom:0;
}

/* CTA BUTTON AREA */

#get-involved .mt-16{
  margin-top:46px;
  text-align:center;
}

#get-involved .mt-16 > div{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:14px;
}

#get-involved .mt-16 a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 24px;
  border-radius:999px;
  color:#fff;
  font-size:.95rem;
  font-weight:900;
  text-decoration:none;
  box-shadow:0 14px 28px rgba(0,0,0,.12);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    filter .25s ease;
}

#get-involved .mt-16 a:first-child{
  background:linear-gradient(135deg, #c46b00, #f2a51c);
}

#get-involved .mt-16 a:last-child{
  background:linear-gradient(135deg, #d82f8b, #7b61ff, #28c7dc);
}

#get-involved .mt-16 a:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 40px rgba(0,0,0,.16);
  filter:brightness(1.04);
}

#get-involved .mt-16 p{
  margin:14px 0 0;
  color:#5d665f;
  font-size:.88rem;
  line-height:1.5;
}

/* =====================================================
   6A. GET INVOLVED MOBILE
===================================================== */

@media(max-width:900px){

  #get-involved{
    padding:62px 0 68px;
  }

  #get-involved > div:last-child{
    width:min(100% - 32px, 720px);
  }

  #get-involved .grid{
    grid-template-columns:1fr;
    gap:22px;
    max-width:560px;
    margin:0 auto;
  }

  #get-involved .grid > div{
    min-height:auto;
    padding:32px 26px 28px;
  }

}

@media(max-width:520px){

  #get-involved{
    padding:54px 0 62px;
  }

  #get-involved > div:last-child{
    width:min(100% - 24px, 520px);
  }

  #get-involved h2{
    font-size:clamp(1.75rem, 9vw, 2.35rem);
    line-height:1.1;
    margin-bottom:22px;
  }

  #get-involved > div:last-child > p{
    margin-bottom:34px;
    font-size:.96rem;
    line-height:1.7;
  }

  #get-involved .grid{
    gap:18px;
    max-width:100%;
  }

  #get-involved .grid > div{
    width:100%;
    padding:28px 22px 26px;
    border-radius:22px;
  }

  #get-involved .grid > div::before{
    border-radius:22px 22px 0 0;
  }

  #get-involved .grid > div > div:first-child{
    width:54px;
    height:54px;
    margin-bottom:16px;
    font-size:1.45rem;
  }

  #get-involved h3{
    font-size:1.18rem;
    line-height:1.18;
  }

  #get-involved .grid > div > p{
    max-width:100%;
    font-size:.94rem;
    line-height:1.6;
  }

  #get-involved ul{
    padding-left:18px;
  }

  #get-involved li{
    font-size:.93rem;
    line-height:1.55;
    margin-bottom:9px;
  }

  #get-involved .mt-16{
    margin-top:36px;
  }

  #get-involved .mt-16 > div{
    flex-direction:column;
    gap:12px;
  }

  #get-involved .mt-16 a{
    width:100%;
    max-width:320px;
    min-height:48px;
    padding:0 18px;
    font-size:.9rem;
  }

}

/* =====================================================
   7. FREQUENTLY ASKED QUESTIONS
===================================================== */

.arts-faq{
  position:relative;
  padding:80px 0 90px;
}

.faq-wrap{
  max-width:920px;
}

.arts-faq h2{
  margin:0 0 40px;
  text-align:center;
  color:var(--brown);
  font-size:clamp(2rem,4vw,3rem);
  font-weight:900;
  line-height:1.1;
}

.arts-faq details{
  margin-bottom:14px;
  border:1px solid rgba(18,60,42,.12);
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 8px 24px rgba(0,0,0,.05);
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.arts-faq details:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 34px rgba(0,0,0,.08);
}

.arts-faq details[open]{
  box-shadow:0 18px 40px rgba(0,0,0,.10);
}

.arts-faq summary{
  display:flex;
  align-items:center;
  gap:12px;
  cursor:pointer;
  list-style:none;
  padding:22px 26px;
  font-size:1.12rem;
  font-weight:800;
  color:var(--green);
  transition:background .25s ease;
}

.arts-faq summary::-webkit-details-marker{
  display:none;
}

.arts-faq summary::before{
  content:"▶";
  font-size:.78rem;
  color:var(--green);
  transition:transform .25s ease;
}

.arts-faq details[open] summary::before{
  transform:rotate(90deg);
}

.arts-faq summary:hover{
  background:#fffaf0;
}

.arts-faq details p{
  margin:0;
  padding:0 26px 24px;
  color:#47564b;
  font-size:1rem;
  line-height:1.85;
}

.arts-faq details p:last-child{
  padding-bottom:28px;
}


