root {
    -primary: #0b3d91;
    -secondary: #00a8cc;
    -light: #f5f7fb;
    -dark: #1a1a1a;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f5f7fb;
    color: #132238;
}

/* HEADER */
header {
    background: #0b3d91;
    color: white;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 500;
}

nav a:hover {
    color: #ffcc00;
}

.home-hero {
    min-height: calc(100vh - 74px);
    background:
        linear-gradient(90deg, rgba(7,34,79,0.9), rgba(7,34,79,0.58), rgba(7,34,79,0.2)),
        url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    padding: 70px 8%;
    position: relative;
    overflow: hidden;
}

.home-logo-strip {
    position: absolute;
    top: 24px;
    left: 8%;
    right: 8%;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 720px;
}

.home-logo-item {
    min-height: 116px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 38px rgba(4, 22, 54, 0.22);
    display: grid;
    place-items: center;
    padding: 14px;
    text-align: center;
}

.home-logo-mark {
    width: 100%;
    height: 72px;
    display: grid;
    place-items: center;
}

.home-logo-mark img {
    max-width: 100%;
    max-height: 72px;
    object-fit: contain;
    display: block;
}

.home-logo-mark span {
    color: #092f6b;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.2;
}

.home-logo-item small {
    color: #247a73;
    display: block;
    font-size: 11px;
    font-weight: 900;
    margin-top: 8px;
    text-transform: uppercase;
}

.home-hero::after {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 0;
    height: 1px;
    background: rgba(255,255,255,0.35);
}

.home-hero-content {
    width: min(760px, 100%);
    padding-top: 154px;
    animation: homeRise 0.9s ease both;
}

.home-kicker,
.home-section-title span {
    display: inline-block;
    color: #9ce3dc;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.home-hero h1 {
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.05;
    margin: 0;
    max-width: 850px;
}

.home-hero p {
    font-size: 20px;
    margin: 22px 0 34px;
    color: rgba(255,255,255,0.86);
}

.home-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    padding: 14px 22px;
}

.home-about,
.home-editions {
    padding: 72px 8%;
}

.home-about {
    background: #fff;
    text-align: center;
}

.home-section-title {
    text-align: center;
    margin-bottom: 22px;
}

.home-section-title h2 {
    color: #092f6b;
    font-size: 38px;
    margin: 0;
}

.home-about p {
    max-width: 820px;
    margin: 0 auto;
    color: #526173;
    font-size: 18px;
    line-height: 1.8;
}

.home-editions {
    background: #eef3f8;
}

.home-edition-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.home-edition-card {
    background: #fff;
    border: 1px solid #dfe8f2;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(9,47,107,0.09);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-edition-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(9,47,107,0.14);
}

.home-edition-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.home-edition-card div {
    padding: 18px;
}

.home-edition-card h3 {
    margin: 0 0 10px;
}

.home-edition-card h3 a {
    color: #092f6b;
    text-decoration: none;
}

.home-edition-card h3 a:hover {
    color: #247a73;
}

.home-edition-card p {
    color: #526173;
    line-height: 1.6;
    margin: 0;
}

@keyframes homeRise {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HERO */
.hero {
    background: linear-gradient(rgba(11,61,145,0.2), rgba(11,61,145,0.6)) ,
                url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 300px 20px;
    text-align: center;
}


.hero h1 {
    font-size: 40px;
}

.hero h1 {
    font-size: 2.5em;
    animation: fadeIn 1.5s ease-in-out;
}

.hero p {
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(20px);}
    to {opacity: 1; transform: translateY(0);}
}
	
.btn {
    background: #ff6600;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
	    font-weight: bold;
    transition: 0.3s;
    text-decoration: none;
	    transition: 0.3s;
}
	
.btn:hover {
    background: #ff8c42;
	transform: scale(1.05);
	}
	
/* SECTION */
.section {
    padding: 60px 40px;
}

/* CARDS */
.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* GRID */
.grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
	
	
.hero-small {
    background: linear-gradient(rgba(11,61,145,0.9), rgba(11,61,145,0.9)),
                url('../images/hero.jpg');
    color: white;
    padding: 60px;
    text-align: center;
}

.container {
    padding: 50px;
    max-width: 900px;
    margin: auto;
}

.container h2 {
    color: #0b3d91;
    margin-top: 30px;
}

.container p {
    line-height: 1.7;
}

.container ul {
    margin-top: 10px;
}
	
.form-section {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

.form-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 700px;
}

.form-card h2 {
    margin-bottom: 20px;
    color: #0b3d91;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-card input,
.form-card textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-top: 10px;
}

.form-card textarea {
    height: 120px;
}

.file-upload {
    margin-top: 20px;
}

.btn-submit {
    margin-top: 20px;
    width: 100%;
    background: #0b3d91;
    color: white;
    padding: 15px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #082c6c;
    transform: scale(1.02);
}
	
.success-box {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.error-box {
    background: #fdecea;
    color: #8a1f13;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}
	
@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}
	
	.editions-page {
    padding: 60px 8%;
    background: #f4f7fb;
}

.page-title {
    text-align: center;
    margin-bottom: 60px;
}

.page-title h1 {
    font-size: 42px;
    color: #0b3d91;
}

.page-title p {
    color: #555;
    margin-top: 10px;
}

.edition-card {
    background: white;
    margin-bottom: 60px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.edition-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.edition-content {
    padding: 40px;
}

.edition-year {
    display: inline-block;
    background: #0b3d91;
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.edition-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #222;
}

.edition-content p {
    line-height: 1.8;
    color: #555;
}

.edition-action-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.edition-action-card {
    border: 1px solid #dce7f1;
    border-radius: 8px;
    background: #f7fafc;
    color: #092f6b;
    display: grid;
    gap: 8px;
    padding: 18px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.edition-action-card:hover {
    border-color: #247a73;
    box-shadow: 0 14px 34px rgba(9,47,107,0.12);
    transform: translateY(-4px);
}

.edition-action-card i {
    width: 42px;
    height: 42px;
    border-radius: 7px;
    background: #e9f6f5;
    color: #247a73;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.edition-action-card span {
    font-size: 19px;
    font-weight: 900;
}

.edition-action-card strong {
    color: #526173;
    font-size: 13px;
}

.edition-detail-hero {
    min-height: 430px;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: flex-end;
    padding: 70px 8%;
}

.edition-detail-hero div {
    max-width: 820px;
}

.edition-back-link {
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    text-decoration: none;
    font-weight: 800;
}

.edition-detail-hero span,
.edition-detail-title span {
    color: #9ce3dc;
    display: inline-block;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.edition-detail-hero h1 {
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.05;
    margin: 10px 0;
}

.edition-detail-hero p {
    color: rgba(255,255,255,0.88);
    font-size: 20px;
    line-height: 1.6;
}

.edition-detail-page {
    padding: 64px 8%;
}

.edition-detail-title {
    max-width: 860px;
    margin-bottom: 28px;
}

.edition-detail-title h2 {
    color: #092f6b;
    font-size: 38px;
    margin: 8px 0 12px;
}

.edition-detail-title p {
    color: #526173;
    font-size: 18px;
    line-height: 1.75;
}

.edition-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.edition-gallery-card {
    border: 0;
    border-radius: 8px;
    background: #092f6b;
    box-shadow: 0 14px 34px rgba(9,47,107,0.12);
    cursor: pointer;
    min-height: 260px;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.edition-gallery-card img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.edition-gallery-card span {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    border-radius: 7px;
    background: rgba(255,255,255,0.94);
    color: #092f6b;
    font-weight: 900;
    padding: 11px 12px;
    text-align: center;
}

.edition-gallery-card:hover img {
    transform: scale(1.05);
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 50;
    background: rgba(4, 16, 35, 0.9);
    display: none;
    place-items: center;
    padding: 28px;
}

.image-lightbox.active {
    display: grid;
}

.image-lightbox figure {
    margin: 0;
    max-width: min(1080px, 100%);
}

.image-lightbox img {
    max-width: 100%;
    max-height: 78vh;
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0,0,0,0.35);
    object-fit: contain;
}

.image-lightbox figcaption {
    color: #fff;
    margin-top: 12px;
    text-align: center;
}

.image-lightbox-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 7px;
    background: #fff;
    color: #092f6b;
    cursor: pointer;
    font-size: 20px;
}

.press-media-list {
    display: grid;
    gap: 18px;
}

.press-media-card {
    background: #fff;
    border: 1px solid #dce7f1;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(9,47,107,0.1);
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
    overflow: hidden;
}

.press-media-preview {
    background: #eef3f8;
    min-height: 250px;
}

.press-media-preview img,
.press-media-preview video,
.press-media-preview iframe {
    width: 100%;
    height: 100%;
    min-height: 250px;
    border: 0;
    display: block;
    object-fit: cover;
}

.press-media-placeholder {
    min-height: 250px;
    display: grid;
    place-items: center;
    color: #247a73;
    gap: 10px;
}

.press-media-placeholder i {
    font-size: 42px;
}

.press-media-placeholder span {
    font-weight: 900;
}

.press-media-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.press-media-content span {
    color: #247a73;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.press-media-content h3 {
    color: #092f6b;
    font-size: 28px;
    line-height: 1.2;
    margin: 10px 0 22px;
}

.press-open-link {
    width: fit-content;
    border-radius: 7px;
    background: #ff6600;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    padding: 12px 16px;
    text-decoration: none;
}

.press-open-link:hover {
    background: #e65c00;
}
	
	
	/* ========================= */
/* INSCRIPTION PAGE */
/* ========================= */

.inscription-hero {
    position: relative;
    min-height: 100vh;
    background:
        linear-gradient(rgba(11,61,145,0.8), rgba(11,61,145,0.8)),
        url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.inscription-container {
    width: 100%;
    max-width: 550px;
    position: relative;
    z-index: 2;
}

.inscription-card {
    background: white;
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    animation: fadeIn 0.8s ease;
}

.inscription-header {
    text-align: center;
    margin-bottom: 35px;
}

.inscription-header h1 {
    color: #0b3d91;
    font-size: 36px;
    margin-bottom: 15px;
}

.inscription-header p {
    color: #666;
    line-height: 1.7;
}

.inscription-form .form-group {
    position: relative;
    margin-bottom: 20px;
}

.inscription-form .form-group i {
    position: absolute;
    left: 15px;
    top: 18px;
    color: #0b3d91;
}

.inscription-form input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
    transition: 0.3s;
}

.inscription-form input:focus {
    border-color: #0b3d91;
    box-shadow: 0 0 10px rgba(11,61,145,0.2);
    outline: none;
}

.btn-inscription {
    width: 100%;
    background: #ff6b00;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-inscription:hover {
    background: #e65c00;
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */

@media(max-width:768px){

    .inscription-card {
        padding: 30px 20px;
    }

    .inscription-header h1 {
        font-size: 28px;
    }

}

.page-hero {
    background: linear-gradient(rgba(9,47,107,0.86), rgba(9,47,107,0.86)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 72px 8%;
}

.page-hero span {
    display: inline-block;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 10px;
    color: #9ce3dc;
}

.page-hero h1 {
    margin: 0;
    font-size: 42px;
}

.page-hero p {
    max-width: 720px;
    line-height: 1.7;
}

.public-page {
    padding: 52px 8%;
}

.speaker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.speaker-card {
    background: #fff;
    border: 1px solid #dfe8f2;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(9,47,107,0.08);
}

.speaker-photo {
    height: 230px;
    background: #e9f6f5;
    display: grid;
    place-items: center;
    color: #247a73;
    font-size: 42px;
}

.speaker-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-content {
    padding: 20px;
}

.speaker-content h2 {
    margin: 0 0 8px;
    color: #092f6b;
}

.speaker-content strong {
    color: #247a73;
}

.speaker-content p {
    color: #526173;
    line-height: 1.6;
}

.program-timeline {
    display: grid;
    gap: 16px;
    max-width: 980px;
    margin: 0 auto;
}

.program-item {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 20px;
    background: #fff;
    border: 1px solid #dfe8f2;
    border-radius: 8px;
    padding: 22px;
    box-shadow: 0 12px 28px rgba(9,47,107,0.08);
}

.program-item time {
    color: #092f6b;
    font-size: 24px;
    font-weight: 900;
}

.program-item span {
    display: inline-block;
    width: fit-content;
    background: #e9f6f5;
    color: #247a73;
    border-radius: 999px;
    padding: 6px 10px;
    font-weight: 800;
    font-size: 12px;
}

.program-item h2 {
    margin: 10px 0 8px;
    color: #092f6b;
}

.program-item p {
    color: #526173;
    line-height: 1.7;
}

.empty-state {
    background: #fff;
    border: 1px solid #dfe8f2;
    border-radius: 8px;
    color: #526173;
    padding: 24px;
    text-align: center;
}

.about-hero {
    min-height: 420px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(7,34,79,0.9), rgba(7,34,79,0.6)),
        url('../images/bg-colloque.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 70px 8%;
}

.about-hero div {
    max-width: 760px;
}

.about-hero span,
.about-section-title span {
    display: inline-block;
    color: #9ce3dc;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-hero h1 {
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.05;
    margin: 0;
}

.about-hero p {
    color: rgba(255,255,255,0.88);
    font-size: 19px;
    line-height: 1.7;
}

.about-page {
    padding: 70px 8%;
}

.about-intro {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
    gap: 38px;
    align-items: start;
    margin-bottom: 38px;
}

.about-section-title h2 {
    color: #092f6b;
    font-size: 38px;
    line-height: 1.15;
    margin: 0;
}

.about-copy {
    background: #fff;
    border: 1px solid #dfe8f2;
    border-radius: 8px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(9,47,107,0.08);
}

.about-copy p {
    color: #526173;
    line-height: 1.8;
    margin: 0 0 16px;
}

.about-copy p:last-child {
    margin-bottom: 0;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.about-cards article {
    background: #fff;
    border: 1px solid #dfe8f2;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(9,47,107,0.08);
}

.about-cards i {
    width: 48px;
    height: 48px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e9f6f5;
    color: #247a73;
    font-size: 22px;
}

.about-cards h2 {
    color: #092f6b;
    margin: 18px 0 12px;
}

.about-cards p,
.about-cards li {
    color: #526173;
    line-height: 1.7;
}

.about-cards ul {
    padding-left: 18px;
    margin: 0;
}

.about-stats {
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.about-stats div {
    background: #092f6b;
    color: #fff;
    border-radius: 8px;
    padding: 28px;
    text-align: center;
}

.about-stats strong {
    display: block;
    font-size: 42px;
    line-height: 1;
}

.about-stats span {
    display: block;
    color: #bcebe6;
    margin-top: 8px;
    font-weight: 800;
}

.contact-hero {
    min-height: 420px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(7,34,79,0.92), rgba(7,34,79,0.58)),
        url('../images/bg-colloque.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 70px 8%;
}

.contact-hero div {
    max-width: 760px;
}

.contact-hero span,
.contact-kicker,
.contact-section-title span {
    display: inline-block;
    color: #9ce3dc;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.contact-hero h1 {
    font-size: clamp(38px, 5vw, 60px);
    margin: 0;
}

.contact-hero p {
    color: rgba(255,255,255,0.88);
    font-size: 19px;
    line-height: 1.7;
}

.contact-page {
    padding: 70px 8%;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
    gap: 22px;
    align-items: start;
}

.contact-section-title h2,
.contact-form-card h2 {
    color: #092f6b;
    font-size: 34px;
    margin: 0 0 20px;
}

.contact-info-grid {
    display: grid;
    gap: 14px;
}

.contact-info-card,
.contact-form-card {
    background: #fff;
    border: 1px solid #dfe8f2;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(9,47,107,0.08);
}

.contact-info-card {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
}

.contact-info-card i {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: #e9f6f5;
    color: #247a73;
    font-size: 22px;
}

.contact-info-card h3 {
    color: #092f6b;
    margin: 0 0 6px;
}

.contact-info-card p,
.contact-info-card a {
    color: #526173;
    line-height: 1.6;
    margin: 0;
    overflow-wrap: anywhere;
}

.contact-info-card a {
    text-decoration: none;
    font-weight: 700;
}

.contact-info-card a:hover {
    color: #247a73;
}

.contact-form-card {
    padding: 26px;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: #33465f;
    font-weight: 800;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #c9d7e6;
    border-radius: 7px;
    padding: 13px;
    font: inherit;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    border: 0;
    border-radius: 7px;
    background: #ff6600;
    color: #fff;
    padding: 14px 18px;
    font-weight: 800;
    cursor: pointer;
}

.contact-form button:hover {
    background: #e65c00;
}

@media (max-width: 640px) {
    .page-hero h1 {
        font-size: 32px;
    }

    .program-item {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .about-intro,
    .about-cards,
    .about-stats,
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1100px) {
    .home-edition-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    header {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }

    nav a {
        display: inline-block;
        margin: 0 12px 8px 0;
    }

    .home-hero {
        min-height: 78vh;
        padding: 160px 24px 56px;
    }

    .home-logo-strip {
        top: 18px;
        left: 24px;
        right: 24px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .home-logo-item {
        min-height: 92px;
        padding: 10px 8px;
    }

    .home-logo-mark {
        height: 54px;
    }

    .home-logo-mark img {
        max-height: 54px;
    }

    .home-logo-mark span {
        font-size: 12px;
    }

    .home-logo-item small {
        font-size: 9px;
    }

    .home-hero-content {
        padding-top: 0;
    }

    .home-about,
    .home-editions {
        padding: 52px 24px;
    }

    .home-section-title h2 {
        font-size: 30px;
    }

    .home-edition-grid {
        grid-template-columns: 1fr;
    }

    .edition-action-grid,
    .press-media-card {
        grid-template-columns: 1fr;
    }

    .edition-detail-hero {
        min-height: 360px;
        padding: 52px 24px;
    }

    .edition-detail-page,
    .editions-page {
        padding: 52px 24px;
    }

    .edition-detail-title h2 {
        font-size: 30px;
    }

    .edition-gallery-grid {
        grid-template-columns: 1fr;
    }

    .press-media-content {
        padding: 22px;
    }

    .press-media-content h3 {
        font-size: 23px;
    }
}
