/* ==========================================================================
   Another Workshop Page — 3ds Max Workshop: 3D Modeling Essentials
   Unique styles; shared workshop styles live in workshop.css
   ========================================================================== */

/* All content sections that slide over the sticky image */
.aw-header,
.aw-topics,
.aw-topics ~ .workshop-audience,
.aw-topics ~ .workshop-dates,
.aw-topics ~ .workshop-pricing,
.aw-topics ~ .workshop-form-section {
	position: relative;
	z-index: 1;
}

/* =============================================================
   Header — pill badge + large title + separator line
   ============================================================= */

.aw-header {
	background: #fff;
    padding: 70px 0;
    border-bottom: 1px solid rgba(76, 70, 69, 0.2);
}

.aw-header__inner {
	display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 2rem;
    align-items: center;
}

.aw-header__pill {
font-family: "Geist", sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.375rem);
    font-weight: 300;
    color: #4C4645;
    border: 1px solid #4C4645;
    border-radius: 100px;
    padding: 8px 20px;
    white-space: nowrap;
    align-self: center;
    justify-self: start;
}

.aw-header__title {
	font-family: "Geist", sans-serif;
    font-size: clamp(2.25rem, 5.5vw, 5rem);
    font-weight: 300;
    color: #4C4645;
    line-height: 1.1;
    margin: 0;
}

.aw-header__line {
	height: 1px;
	background: rgba(76, 70, 69, 0.15);
	width: 100%;
}

/* =============================================================
   Intro — white bg, appears before sticky
   ============================================================= */

.aw-intro {
	background: #fff;
	padding: clamp(60px, 8vw, 120px) 0 clamp(60px, 8vw, 100px);
}

/* =============================================================
   Topics — Θεματολογία (gray bg, 3-column bullet list)
   ============================================================= */

.aw-topics {
	background: #f7f7f7;
	padding: 80px 0 100px;
}

.aw-topics__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px 80px;
	margin-bottom: 48px;
}

.aw-topics__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.aw-topics__list li {
	font-family: 'Manrope', sans-serif;
	font-size: clamp(15px, 1.25vw, 18px);
	font-weight: 400;
	color: #4c4645;
	line-height: 1.5;
	padding-left: 22px;
	position: relative;
}

.aw-topics__list li::before {
	content: '—';
	position: absolute;
	left: 0;
	color: #4c4645;
	opacity: 0.45;
}

/* =============================================================
   Dates grid — 3-column variant
   ============================================================= */

.workshop-dates__grid--3col {
	grid-template-columns: auto auto auto 1fr;
}

/* =============================================================
   Pricing — decorative asterisk + combo discount note
   ============================================================= */

.aw-pricing__asterisk {
	pointer-events: none;
    user-select: none;
    position: absolute;
    top: -30px;
    left: -15px;
    z-index: -1;
}

.aw-pricing__combo {
	margin-top: 150px;
	padding-bottom: 32px;

	position: relative;
	z-index: 1;
}

.aw-pricing__combo p {
	font-family: 'Manrope', sans-serif;
	font-size: clamp(14px, 1.25vw, 18px);
	font-weight: 400;
	color: #4c4645;
	line-height: 1.6;
	margin: 0;
}

/* =============================================================
   Responsive
   ============================================================= */

@media (max-width: 1024px) {
	.aw-topics__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px 48px;
	}

	.workshop-dates__grid--3col {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto;
	}

	.workshop-dates__grid--3col .workshop-dates__col--note {
		grid-column: 1 / -1;
		padding-bottom: 0;
	}
}

@media (max-width: 640px) {
	.aw-header__title {
		font-size: clamp(28px, 8vw, 44px);
	}

	.aw-topics__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.workshop-dates__grid--3col {
		grid-template-columns: 1fr;
	}
}
