* /* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f1ed;
    color: #6f8c7b;
}

/* WRAPPER */
#wrapper {
    width: 100%;
}

/* HEADER */
header {
    background-color: #b79b84;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* NAME */
header h1 {
    font-size: 48px;
    color: var(--Cool-Green-Web, #748A80);
-webkit-text-stroke-width: 1.5px;
-webkit-text-stroke-color: #000;
font-style: normal;
font-weight: 700;
line-height: normal;
letter-spacing: 0.96px;;
}

/* NAV */
nav a {
    text-decoration: none;
    color: #f5f5f5;
    margin-left: 25px;
    font-size: 20px;
    font-weight: bold;
    transition: 0.3s;
}

nav a:hover {
    color: #2e2e2e;
}

/* MAIN LAYOUT */
main {
    display: flex;
    justify-content: space-between;
    padding: 60px 80px;
}

/* LEFT SIDE */
section {
    width: 55%;
}

/* PAGE TITLE */
section h1 {
  font-size: 60px;
    margin-bottom: 30px;
    color: #748A80;
-webkit-text-stroke-width: 1.5px;
-webkit-text-stroke-color: #000;
font-style: normal;
font-weight: 700;
line-height: normal;
letter-spacing: 0.96px;
}

/* TEXT */
section p {
    font-size: 22px;
    line-height: 1.6;
    font-weight: bold;
}
/* CONTAINER FOR BOTH BOXES */
.media-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 120px;
}

/* EACH SIDE (video + podcast) */
.media-box {
    text-align: center;
}

/* GREEN LABEL BUTTONS */
.media-label {
    display: inline-block;
    background-color: #8fa88f;
    color: black;
    font-weight: bold;
    padding: 10px 25px;
    margin-bottom: 20px;
    font-size: 18px;
}

/* GRAY PLACEHOLDER BOXES */
.media-placeholder {
    width: 350px;
    height: 220px;
    background-color: #cfcfcf;
}

.media-section {
    padding: 50px;
    margin-top: 50px; /* 👈 pushes everything down */
    margin-left: 450px;
}