/* GENERAL */
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, Helvetica, Arial, sans-serif;
    color: #111;
    background-color: #ffffff;
}

/* NAVBAR */
header {
    width: 100%;
    background-color: white;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 10;
}

.navbar {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.8rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.3rem;
    text-decoration: none;
    font-weight: 600;
    color: #111;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.2rem;
}

.nav-links a {
    text-decoration: none;
    color: #111;
    font-size: 0.95rem;
    transition: 0.2s ease;
}

.nav-links a:hover {
    opacity: 0.6;
}

/* HERO SECTION */
.hero {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 5rem 1.5rem 6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;

    background: #f4f4f4;   /* soft grey background */
    border-radius: 12px;   /* soft rounded edges */
}
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 3.5rem;
    margin: 0;
    font-weight: 700;
}

.tagline {
    font-size: 1.3rem;
    margin-top: 0.4rem;
    color: #444;
}

.intro {
    margin-top: 1.5rem;
    font-size: 1.05rem;
    max-width: 500px;
    line-height: 1.55;
    color: #555;
}

/* HERO IMAGE */
.hero-right img {
    max-width: 340px;
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}
}

/* BUTTONS */
.hero-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.btn {
    text-decoration: none;
    padding: 0.7rem 1.4rem;
    background-color: #111;
    color: white;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: 0.2s;
}

.btn:hover {
    opacity: 0.75;
}

.btn-outline {
    background: none;
    border: 1px solid #111;
    color: #111;
}

.btn-outline:hover {
    background: #111;
    color: white;
}

/* MOBILE */
@media (max-width: 850px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding: 3rem 1.2rem 5rem;
    }

    .hero-right img {
        width: 300px;
    }

    .hero-buttons {
        justify-content: center;
    }
}/* ======================
   BIO PAGE LAYOUT
   ====================== */
.bio-content {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.bio-text {
  display: block;
  line-height: 1.7;
  font-size: 1.05rem;
}

.bio-text p {
  margin-bottom: 60px;
  line-height: 1.7;
  font-size: 1.05rem;
}
/* Right portrait image */
.bio-image-right img {
  max-width: 340px;
  height: auto;
  border-radius: 6px;
  margin-top: 60px;
  text-align: center;
    margin-left: 240px;

}


/* Mobile adjustment */
@media (max-width: 768px) {
  .bio-text {
    flex-direction: column;
  }

  .bio-image-right img {
    max-width: 100%;
  }
}
.page-header {
  max-width: 1100px;
  margin: 60px auto 40px;
  padding: 0 20px;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.page-subtitle {
  color: #777;
  font-size: 1.1rem;
}
/* =========================
   PROJECTS PAGE
========================= */

.projects {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
}

main {
  min-height: auto;
  padding-top: 40px;
}
/* Hero */
.projects-hero {
  margin-bottom: 80px;
}

.projects-hero h1 {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.projects-intro {
  max-width: 720px;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #555;
}

/* Category blocks */
.project-category {
  margin-bottom: 100px;
}

.project-category h2 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 30px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

/* Grid */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* Cards */
.project-card {
  background: #f3f3f3;
  padding: 24px;
  text-decoration: none;
  color: #111;
  border-radius: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.project-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
}
/* Image wrapper inside cards */
.project-image {
  width: 100%;
  height: 180px;              /* 👈 this is key */
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 16px;
}

/* The image itself */
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* fills nicely */
  display: block;
}
/* Hover effect */
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Featured projects */
.project-card.featured {
  background: #e8e8e8;
  border-left: 4px solid #111;
}
/* =========================
   SINGLE PROJECT PAGE
========================= */
.project-image {
  width: 100%;
  height: 160px;          /* ← controls card image height */
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 16px;
  background: #eaeaea;
}
.project-hero {
  padding: 100px 20px 60px;
  max-width: 900px;
  margin: 0 auto;
}

.project-hero h1 {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.project-subtitle {
  font-size: 1.2rem;
  color: #555;
}

.project-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 120px;
}

.project-section {
  margin-top: 80px;
}

.project-section h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 24px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

/* Audio */
.audio-player {
  width: 100%;
  max-width: 500px;
}

/* Score */
.score-preview img {
  max-width: 100%;
  border-radius: 6px;
}

.caption {
  font-size: 0.9rem;
  color: #666;
  margin-top: 8px;
}

/* Video */
.video-wrapper {
  position: relative;
  padding-top: 56.25%;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Press */
.press-quote {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.press-quote span {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #666;
}
/* =========================
   WORKS PAGE ONLY
========================= */

.works .works-hero-bg {
  height: 360px;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: 80px;
}

.works .works-hero-overlay {
  background: rgba(0, 0, 0, 0.45);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
  color: #fff;
}

.works .works-hero-overlay h1 {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.works .works-hero-overlay p {
  max-width: 640px;
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.9;
}

.works .works-table-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 100px;
}

.works .works-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.works .works-table thead th {
  text-align: left;
  font-weight: 500;
  padding: 14px 12px;
  border-bottom: 2px solid #111;
}

.works .works-table tbody tr {
  border-bottom: 1px solid #e0e0e0;
}

.works .works-table tbody tr:hover {
  background: #f6f6f6;
}

.works .works-table td {
  padding: 14px 12px;
  vertical-align: top;
}

.works .works-table td:first-child {
  font-weight: 500;
}

.works .works-table a {
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #bbb;
}

.works .works-table a:hover {
  border-bottom: 1px solid #111;
}

.works .preview-btn {
  display: inline-block;
  padding: 5px 10px;
  font-size: 0.8rem;
  border: 1px solid #111;
  border-radius: 4px;
  text-decoration: none;
  color: #111;
}

.works .preview-btn:hover {
  background: #111;
  color: #fff;
}

.work-link {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}

.work-link:hover {
  text-decoration: underline;
}

.works .works-note {
  margin-top: 30px;
  font-size: 0.85rem;
  color: #666;
}
/* =========================
   CONTACT PAGE
========================= */

.contact {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
}

.contact-hero h1 {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.contact-intro {
  max-width: 600px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 60px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact-block h2 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.contact-block p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.contact-block a {
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #111;
}

.contact-block a:hover {
  opacity: 0.7;
}
/* =========================
   PROJECT HERO IMAGE
========================= */

.project-hero-image {
  width: 100%;
  margin: 40px 0 50px 0;
}

.project-hero-image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.contact-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-links li {
  margin-bottom: 8px;
}

.contact-links a {
  text-decoration: none;
  color: #111;
  border-bottom: 1px solid transparent;
}

.contact-links a:hover {
  border-bottom: 1px solid #111;
}
/* =========================
   AGENDA PAGE
========================= */

.agenda {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 20px;
}

.agenda-hero {
  margin-bottom: 80px;
}

.agenda-hero h1 {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.agenda-hero p {
  max-width: 720px;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #555;
}

.agenda-section {
  margin-bottom: 80px;
}

.agenda-section h2 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 40px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

/* Agenda item */
.agenda-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 32px;
  margin-bottom: 40px;
  align-items: start;
}

/* Date block */
.agenda-date {
  text-align: center;
  font-family: inherit;
}

.agenda-date .day {
  display: block;
  font-size: 2rem;
  font-weight: 500;
}

.agenda-date .month {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #555;
}

.agenda-date .year {
  display: block;
  font-size: 0.85rem;
  color: #888;
}

.agenda-date.muted {
  opacity: 0.5;
}

/* Info */
.agenda-info h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.agenda-info .role {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 4px;
}

.agenda-info .location {
  font-size: 0.9rem;
  color: #777;
}

/* Past section */
.agenda-section.past {
  opacity: 0.85;
}
.map-link {

display:inline-block;
margin-top:10px;

font-size:0.85rem;

color:#777;

text-decoration:none;

border-bottom:1px solid #ccc;

transition:0.3s;

}


.map-link:hover {

color:#000;

border-color:#000;

}

/* ======================
   BLOG PAGE
====================== */
.blog {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
}

.blog-header h1 {
  font-size: 3rem;
}

.blog-entry {
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e5e5;
}

.blog-entry h2 a {
  text-decoration: none;
  color: #111;
}

.blog-date {
  font-size: 0.85rem;
  color: #777;
}
.project-hero--end .project-hero-image img {
  max-height: 50vh;
}
/* COLORS AND FORMS PAGE */

body.colors-forms {
  background-color: #111;
  color: #eee;
}

.cf-hero {
  min-height: 100vh;
  background-image: url("assets/projects/colors-and-forms-cover.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.cf-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.cf-overlay h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cf-subtitle {
  font-size: 1.2rem;
  max-width: 700px;
}

.cf-content {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.cf-text p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cf-call {
  margin: 4rem 0;
  padding: 2rem;
  border-left: 3px solid #aaa;
}

.cf-mail a {
  font-size: 1.1rem;
  text-decoration: underline;
}

.cf-audio h2 {
  margin-bottom: 2rem;
}

.cf-audio-item {
  margin-bottom: 2rem;
}

.cf-audio-item audio {
  width: 100%;
}

.placeholder {
  opacity: 0.6;
  font-style: italic;
}

/* COMPOSITION HERO */

.composition-hero {
  position: relative;
  height: 70vh;
  background-image: url("assets/images/composition-projects1.jpeg");
  background-size: cover;
  background-position: center;
  clip-path: polygon(
    0% 0%,
    100% 3%,
    97% 88%,
    60% 95%,
    0% 85%
  );
}

.composition-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: flex-end;
  padding: 60px;
}

.composition-overlay h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  width: 100%;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
/* BIG BAND HERO */

.project-hero--bigband {
  position: relative;
  height: 75vh;
  min-height: 520px;
  background-image: url("assets/images/Maas-tangos-cover.png");
  background-size: cover;
  background-position: center;
  clip-path: polygon(
    0% 0%,
    100% 0%,
    100% 85%,
    72% 92%,
    38% 88%,
    0% 95%
  );
}

/* Overlay for readability */
.project-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.55)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 4rem;
}

/* Text styling */
.project-hero-overlay h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.project-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 600px;
}
/* MEDIA PAGE */

.media-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.media-intro {
  margin-bottom: 4rem;
}

.media-intro h1 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.media-statement {
  max-width: 620px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #444;
}

/* SECTIONS */

.media-section {
  margin-bottom: 5rem;
}

.media-section h2 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

/* VIDEOS */

.media-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.media-video figcaption {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  color: #555;
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  overflow: hidden;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* PHOTOS */

.media-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.media-photo-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
/* PRESS PAGE */

.press-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.press-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

.press-hero img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 4px;
}

.press-hero blockquote {
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.4;
  color: #222;
}

.press-section {
  margin-bottom: 4rem;
}

.press-section h2 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.press-links {
  list-style: none;
  padding: 0;
  columns: 2;
  column-gap: 3rem;
}

.press-links li {
  margin-bottom: 0.8rem;
}

.press-links a {
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid transparent;
}

.press-links a:hover {
  border-color: #000;
}

.press-downloads {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.press-downloads a {
  text-decoration: none;
  font-weight: 500;
  color: #000;
}

.press-downloads a:hover {
  text-decoration: underline;
}

/* Responsive */

@media (max-width: 768px) {
  .press-hero {
    grid-template-columns: 1fr;
  }

  .press-links {
    columns: 1;
  }
}
/* =========================
   ELECTRONICS PROJECT PAGE
   ========================= */

.electronic-background {

    position: relative;
    overflow: hidden;

    background:
        radial-gradient(circle at 15% 20%, rgba(110,70,255,.35), transparent 30%),
        radial-gradient(circle at 80% 15%, rgba(0,220,255,.28), transparent 30%),
        radial-gradient(circle at 60% 85%, rgba(255,80,180,.18), transparent 40%),
        #050505;

    background-size: 220% 220%;
    animation: ambientMove 18s ease infinite;

    min-height: 100vh;
    padding: 100px 0;
    border-radius: 20px;
}


/* Animated background */

@keyframes ambientMove {

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }

}


/* Main container */

.electronics-page {

    max-width: 950px;
    margin: auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;

}


/* Header */

.electronics-header {

    margin-bottom: 90px;

}

.electronics-header h1 {

    font-size: 6rem;
    font-weight: 200;
    letter-spacing: -4px;
    margin-bottom: 15px;

    background: linear-gradient(
        90deg,
        #ffffff,
        #99c6ff,
        #75f7ff,
        #d59bff
    );

    background-size: 300%;

    -webkit-background-clip: text;
    color: transparent;

    animation: titleGlow 10s linear infinite;

    text-shadow:
        0 0 15px rgba(150,200,255,.20),
        0 0 35px rgba(120,90,255,.15);

}


@keyframes titleGlow {

    from {
        background-position: 0%;
    }

    to {
        background-position: 300%;
    }

}


.subtitle {

    font-size: 1.4rem;
    line-height: 1.8;
    color: #d6ddff;
    max-width: 700px;

}


/* Decorative signal line */

.signal {

    width: 220px;
    height: 2px;

    margin: 45px 0 70px;

    background: linear-gradient(
        90deg,
        transparent,
        #00f7ff,
        #9b6dff,
        transparent
    );

    background-size: 300%;

    animation: signalMove 4s linear infinite;

}


@keyframes signalMove {

    from {
        background-position: 0%;
    }

    to {
        background-position: 300%;
    }

}


/* Text */

.electronics-text {

    font-size: 1.15rem;
    line-height: 2;
    color: #d8e3ff;

    margin-bottom: 90px;

}

.electronics-text p {

    margin-bottom: 35px;

}


/* Section titles */

.electronics-recordings h2,
.electronics-tools h2 {

    font-size: 2rem;
    font-weight: 300;
    color: #ffffff;

    margin-bottom: 45px;

}


/* Cards */

.electronic-piece {

    position: relative;
    overflow: hidden;

    padding: 40px;

    margin-bottom: 45px;

    border-radius: 22px;

    background: rgba(255,255,255,.05);

    backdrop-filter: blur(18px);

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

    box-shadow:
        0 10px 40px rgba(0,0,0,.45),
        0 0 40px rgba(100,120,255,.08);

    transition: .35s;

}

.electronic-piece:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 60px rgba(0,0,0,.55),
        0 0 80px rgba(0,220,255,.22);

}


.electronic-piece h3 {

    font-size: 1.45rem;
    font-weight: 300;

    color: white;

    margin-bottom: 20px;

}


.electronic-piece p {

    color: #cfdcff;
    margin-top: 20px;
    line-height: 1.8;

}


.electronic-piece audio {

    width: 100%;

}


/* Tools */

.electronics-tools {

    margin-top: 90px;
    padding-top: 60px;

    border-top: 1px solid rgba(255,255,255,.08);

    color: #d5e0ff;
    line-height: 1.8;

}


/* Floating blobs */

.blob {

    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    opacity: .18;
    pointer-events: none;

}

.blob1 {

    width: 300px;
    height: 300px;

    background: #7c5cff;

    top: 120px;
    left: -100px;

    animation: float1 14s ease-in-out infinite;

}

.blob2 {

    width: 250px;
    height: 250px;

    background: #00d5ff;

    right: -80px;
    top: 500px;

    animation: float2 18s ease-in-out infinite;

}

.blob3 {

    width: 220px;
    height: 220px;

    background: #ff5bc5;

    bottom: 120px;
    left: 45%;

    animation: float3 16s ease-in-out infinite;

}


@keyframes float1 {

    50% {
        transform: translate(60px,40px);
    }

}

@keyframes float2 {

    50% {
        transform: translate(-40px,60px);
    }

}

@keyframes float3 {

    50% {
        transform: translate(20px,-50px);
    }

}


/* Responsive */

@media (max-width: 768px) {

    .electronics-header h1 {

        font-size: 3.5rem;

    }

    .subtitle {

        font-size: 1.15rem;

    }

    .electronic-piece {

        padding: 25px;

    }

}
/* =========================
   NEWSLETTER PAGE
   ========================= */


.newsletter-page {

max-width:900px;
margin:80px auto;
padding:20px;

}



.newsletter-hero {

padding-bottom:80px;

}



.newsletter-hero h1 {

font-size:5rem;
font-weight:300;
letter-spacing:-3px;

}



.newsletter-hero p {

font-size:1.2rem;
line-height:1.8;
max-width:650px;

}





.newsletter-signup {

background:#f5f5f5;
padding:45px;
border-radius:20px;

margin-bottom:80px;

}



.newsletter-signup h2 {

font-weight:400;

}



.newsletter-box {

display:flex;
gap:10px;
margin-top:30px;

}



.newsletter-box input {

flex:1;
padding:15px;
border:1px solid #ccc;
font-size:1rem;

}



.newsletter-box button {

padding:15px 30px;
background:black;
color:white;
border:none;
cursor:pointer;

}



.newsletter-archive h2 {

font-size:2rem;
font-weight:400;

}



.newsletter-card {

margin-top:40px;
padding:35px;

border-left:2px solid black;

}



.newsletter-date {

color:#777;
font-size:.9rem;

}



.newsletter-card h3 {

font-size:1.8rem;
font-weight:400;

}



.newsletter-card p {

line-height:1.8;

}



.newsletter-card a {

color:black;
text-decoration:none;
border-bottom:1px solid black;

}



@media(max-width:700px){

.newsletter-box{

flex-direction:column;

}

.newsletter-hero h1{

font-size:3rem;

}

}
