/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth; }

body {
    background-color: #f9fafb;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

a { text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ===== ALPINE.JS TRANSITION UTILITIES ===== */
[x-cloak] { display: none !important; }
.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }
.scale-90 { transform: scale(0.9); }
.scale-100 { transform: scale(1); }
.transition { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
.duration-200 { transition-duration: 200ms; }

/* Carousel dot states bound via x-bind:class */
.dot-active   { background-color: #1f2937; }
.dot-inactive { background-color: #9ca3af; }

/* ===== HEADER ===== */
.site-header {
    background-color: #334155;
    color: #fff;
}

.site-header__inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header__logo {
    width: 12rem;
}

.site-header__social {
    display: none;
    align-items: center;
    gap: 1rem;
    margin-right: 8rem;
}

.site-header__social a {
    color: #fff;
    font-size: 1.25rem;
    transition: color 300ms;
}

.site-header__social a:hover { color: #2dd4bf; }

@media (min-width: 768px) {
    .site-header__social { display: flex; }
}

.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    white-space: nowrap;
    font-weight: 500;
}

/* ===== ACCENT BAR ===== */
.accent-bar {
    height: 0.5rem;
    width: 100%;
    background-color: #22d3ee;
}

/* ===== MENU MODAL ===== */
.menu-modal {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 1rem;
}

.menu-modal__top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 0;
}

.menu-modal__top-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-modal__top-logo { width: 12rem; }

.menu-modal__close-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #133349;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 150ms;
}

.menu-modal__close-top:hover { color: #1e293b; }
.menu-modal__close-label { font-weight: 400; font-size: 1.125rem; }
.menu-modal__close-x { font-size: 2.25rem; }

.menu-modal__body {
    font-size: 1.25rem;
    width: 100%;
    max-width: 24rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #133349;
    position: relative;
}

.menu-modal__close-inner {
    position: absolute;
    top: 1rem;
    font-size: 2.25rem;
    color: #133349;
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    transition: color 150ms;
}

.menu-modal__close-inner:hover { color: #1e293b; }

@media (min-width: 768px) {
    .menu-modal__close-inner { display: block; }
}

.menu-modal__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(19, 51, 73, 0.4);
    padding-top: 1.5rem;
    width: 100%;
}

.menu-modal__nav a {
    color: #133349;
    transition: font-size 300ms, font-weight 300ms;
}

.menu-modal__nav a:hover {
    font-size: 1.5rem;
    font-weight: 700;
}

.menu-modal__divider {
    width: 100%;
    border-top: 1px solid rgba(19, 51, 73, 0.4);
    padding-top: 1.5rem;
}

.menu-modal__socials {
    display: flex;
    gap: 1.5rem;
}

.menu-modal__socials a {
    color: #133349;
    font-size: 1.25rem;
    transition: color 300ms;
}

.menu-modal__socials a:hover { color: #3AC8DC; }

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    padding: 0.75rem 1.25rem;
    background-color: #133349;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    z-index: 50;
    transition: transform 300ms;
}

.whatsapp-btn:hover { transform: scale(1.05); }

.whatsapp-btn__icon { font-size: 1.5rem; color: #4ade80; }

.whatsapp-btn__label {
    color: #fff;
    font-weight: 700;
    display: none;
}

@media (min-width: 640px) {
    .whatsapp-btn { padding: 0.75rem 2rem; }
    .whatsapp-btn__label { display: block; }
}

/* ===== HERO ===== */
.hero {
    background-image: linear-gradient(rgba(27, 104, 119, 0.7), rgba(36, 132, 151, 0.4)),
        url("images/schaefer770/schaefer-770_10.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 28rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

@media (max-width: 768px) {
    .hero { background-attachment: scroll; }
}

@media (min-width: 768px) {
    .hero { height: 600px; }
}

.hero__content {
    text-align: center;
    padding: 0 1rem;
}

.hero__title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) { .hero__title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero__title { font-size: 4.5rem; } }

.hero__subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    max-width: 42rem;
    margin: 0 auto;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) { .hero__subtitle { font-size: 1.25rem; } }
@media (min-width: 1024px) { .hero__subtitle { font-size: 1.5rem; } }

/* ===== BOATS LISTING ===== */
.boats-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.boats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .boats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .boats-grid { grid-template-columns: repeat(3, 1fr); }
}

.boat-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    overflow: hidden;
    transition: box-shadow 300ms;
}

.boat-card:hover {
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.boat-card__img-wrap { aspect-ratio: 16 / 10; }

.boat-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.boat-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.5rem;
}

.boat-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #133349;
    text-align: center;
}

.boat-card__divider {
    width: 11rem;
    height: 0.125rem;
    background-color: #3AC8DC;
    margin: 0.75rem auto;
}

.boat-card__subtitle {
    color: #133349;
    font-weight: 400;
    text-align: center;
    margin-bottom: 1rem;
}

.boat-card__specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 1rem 0;
    margin-bottom: 1.25rem;
}

.boat-card__spec-col {
    color: #133349;
    font-weight: 400;
}

.boat-card__spec-col p {
    margin: 0;
}

.boat-card__spec-col--bordered {
    border-left: 2px solid #3AC8DC;
    text-align: left;
    padding-left: 0.5rem;
}

.boat-card__spec-label {
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.boat-card__cta {
    display: block;
    text-align: center;
    width: 100%;
    background-color: #133349;
    color: #fff;
    padding: 0.875rem;
    margin-top: auto;
    transition: background-color 300ms;
    font-weight: 500;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
}

.boat-card__cta:hover { background-color: #0f172a; }

/* ===== SLANT DIVIDER ===== */
.slant-divider {
    background-color: #dbeafe;
    padding: 2.5rem 0;
    clip-path: polygon(0 0, 100% 0, 99% 100%, 0 100%);
    max-width: 80rem;
    min-height: 100px;
}

/* ===== BOAT DETAIL ===== */
.boat-detail { padding: 4rem 0; }

.boat-detail__container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.boat-detail__intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    margin-right: 8rem;
}

.boat-detail__intro--mr7 { margin-right: 7rem; }

@media (max-width: 1023px) {
    .boat-detail__intro,
    .boat-detail__intro--mr7 { margin-right: 0; }
}

@media (min-width: 1024px) {
    .boat-detail__intro { grid-template-columns: repeat(2, 1fr); }
}

/* Title columns */
.boat-detail__title-col {
    text-align: center;
}

@media (min-width: 1024px) {
    .boat-detail__title-col { text-align: right; }
    .boat-detail__title-col--mr10 { margin-right: 2.5rem; }
    .boat-detail__title-col--pr8 { padding-right: 2rem; }
}

/* Mobile left margin variants */
.boat-detail__title-col--ml28 { margin-left: 7rem; }
.boat-detail__title-col--ml32 { margin-left: 8rem; }

@media (min-width: 1024px) {
    .boat-detail__title-col--ml28,
    .boat-detail__title-col--ml32 { margin-left: 0; }
}

/* Boat name headings */
.bd-title {
    font-weight: 700;
    color: #334155;
    line-height: 1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* schaefer830: text-xl mobile, md:text-7xl, lg:text-4xl */
.bd-title--v1 { font-size: 1.25rem; margin-left: 7rem; }
@media (min-width: 768px) { .bd-title--v1 { font-size: 4.5rem; } }
@media (min-width: 1024px) { .bd-title--v1 { font-size: 2.25rem; margin-left: 0; } }

/* others: text-4xl ml-28, md:text-7xl, lg:text-5xl */
.bd-title--v2 { font-size: 2.25rem; margin-left: 7rem; }
@media (min-width: 768px) { .bd-title--v2 { font-size: 4.5rem; } }
@media (min-width: 1024px) { .bd-title--v2 { font-size: 3rem; margin-left: 0; } }

/* ferretti75: ml-32 on mobile */
.bd-title--v3 { font-size: 2.25rem; margin-left: 8rem; }
@media (min-width: 768px) { .bd-title--v3 { font-size: 4.5rem; } }
@media (min-width: 1024px) { .bd-title--v3 { font-size: 3rem; margin-left: 0; } }

/* no ml on mobile (col already has ml-28) */
.bd-title--v4 { font-size: 2.25rem; }
@media (min-width: 768px) { .bd-title--v4 { font-size: 4.5rem; } }
@media (min-width: 1024px) { .bd-title--v4 { font-size: 3rem; } }

.bd-number {
    color: #1e293b;
    font-size: 6rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.bd-number--mr3 { margin-right: 0.75rem; }
.bd-number--mr10 { margin-right: 2.5rem; }
.bd-number--mr12 { margin-right: 3rem; }
.bd-number--long { font-size: 3.5rem; }

/* Description panel */
.boat-detail__desc {
    border-left: 4px solid #22d3ee;
    padding-left: 1.5rem;
}

.boat-detail__desc--pl8 { padding-left: 2rem; }
.boat-detail__desc--h72 { height: 18rem; }

.boat-detail__desc p { color: #374151; line-height: 1.625; }
.boat-detail__desc p + p { margin-top: 1.5rem; }
.boat-detail__desc--semibold p { font-weight: 600; }

/* ===== CAROUSEL ===== */
.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 9999px;
    padding: 0.5rem;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    border: none;
    cursor: pointer;
    transition: background-color 150ms;
}

.carousel__btn:hover { background-color: #fff; }
.carousel__btn--prev { left: 0.75rem; }
.carousel__btn--next { right: 0.75rem; }

.carousel__btn svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #374151;
}

.carousel__track {
    position: relative;
    min-height: 50svh;
    width: 100%;
}

@media (min-width: 1024px) {
    .carousel__track { min-height: 70svh; }
}

.carousel__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease;
}

.carousel__slide.active {
    opacity: 1;
    pointer-events: auto;
}

.carousel__slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    object-fit: cover;
}

.carousel__dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 20;
}

.carousel__dot {
    display: none;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: background-color 150ms;
}

.carousel__counter {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    z-index: 20;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.6rem;
    border-radius: 9999px;
    opacity: 0;
    transition: opacity 200ms ease;
    pointer-events: none;
    user-select: none;
}

.carousel:hover .carousel__counter {
    opacity: 1;
}

/* ===== SPECS BANNER ===== */
.specs-banner {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 1.5rem 0;
    padding: 1rem 0;
}

.specs-banner__bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.specs-banner__side {
    height: 100%;
    background-color: #133349;
    transform: skewX(-12deg);
}

.specs-banner__left  { width: 25%; margin-left: -0.75rem; }
.specs-banner__right { width: 25%; margin-right: -0.75rem; }

@media (min-width: 768px) {
    .specs-banner__left,
    .specs-banner__right { width: 35%; }
}

@media (min-width: 1280px) {
    .specs-banner__left,
    .specs-banner__right { width: 40%; }
}

.specs-banner__title {
    position: relative;
    white-space: nowrap;
    padding: 0 1rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #133349;
}

@media (min-width: 768px) { .specs-banner__title { font-size: 1.875rem; } }

/* ===== SPECS & DOWNLOAD LAYOUT ===== */
.specs-section { padding: 0.5rem 0; }

.specs-layout {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    justify-content: center;
    align-items: center;
    padding: 2.5rem 0;
}

@media (min-width: 1024px) {
    .specs-layout { flex-direction: row; gap: 0; align-items: flex-start; justify-content: center; }
    .specs-layout--ml14 { margin-left: 3.5rem; }
}

.download-col { text-align: center; }

@media (min-width: 1024px) {
    .download-col { flex: 1; text-align: right; padding-right: 3rem; }
    .download-col__inner { margin-right: 0.75rem; }
}

.specs-col { text-align: center; }

@media (min-width: 1024px) {
    .specs-col { flex: 1; padding-left: 3rem; }
}

.download-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #133349;
    line-height: 1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) { .download-title { font-size: 3rem; } }

.download-title span {
    display: block;
    font-size: 2.25rem;
    font-weight: 700;
    color: #133349;
    line-height: 1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) { .download-title span { font-size: 3rem; } }
@media (min-width: 1024px) { .download-title span { margin-right: 0.75rem; } }

.download-btn-wrap { margin-top: 2.5rem; }

.download-btn {
    display: inline-block;
    background-color: #18BFD6;
    border-radius: 1.5rem;
    color: #fff;
    padding: 0.75rem 3rem;
    transition: background-color 300ms;
    font-weight: 500;
}

.download-btn:hover { background-color: #54D4E5; }

@media (min-width: 1024px) {
    .download-btn { padding: 0.75rem 7rem; }
}

.specs-vert-sep {
    display: none;
    flex-direction: column;
    width: 0.5rem;
}

.specs-vert-sep--h80 { height: 20rem; }
.specs-vert-sep--h96 { height: 24rem; }

@media (min-width: 1024px) {
    .specs-vert-sep { display: flex; align-self: stretch; height: auto; }
}

.specs-vert-sep__top    { height: 50%; background-color: #133349; }
.specs-vert-sep__bottom { height: 50%; background-color: #22d3ee; }

.specs-list { line-height: 1.625; font-weight: 600; text-align: center; }

@media (min-width: 1024px) { .specs-list { text-align: left; } }
@media (min-width: 1024px) { .specs-list { text-align: left; } }
.specs-list li { padding-bottom: 0.5rem; color: #133349; }

/* ===== BUDGET BLOCK ===== */
.budget-block { padding: 2.5rem 0; margin-bottom: 7rem; }

@media (min-width: 1024px) {
    .budget-block--mr14 { margin-right: 3.5rem; }
}

.budget-block__title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #133349;
    margin-bottom: 2rem;
}

@media (min-width: 768px) { .budget-block__title { font-size: 1.875rem; } }

.budget-card {
    background-color: #E0F4FA;
    max-width: 56rem;
    margin: 0 auto 2.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 0.375rem;
}

@media (min-width: 640px) {
    .budget-card { flex-direction: row; text-align: left; padding: 2rem; }
}

.budget-card__icon { flex-shrink: 0; width: 5rem; height: 5rem; color: #133349; }

.budget-card__content { margin-top: 1rem; }

@media (min-width: 640px) {
    .budget-card__content { margin-top: 0; margin-left: 1.5rem; }
}

.budget-card__title { font-size: 1.25rem; font-weight: 600; color: #133349; }
.budget-card__text  { color: #133349; font-size: 0.875rem; margin-top: 0.5rem; line-height: 1.625; }

/* ===== SECTION SEPARATOR ===== */
.section-sep { position: relative; display: flex; align-items: center; width: 100%; }

.section-sep__bar {
    height: 0.75rem;
    width: 100%;
    background-color: #334155;
    position: relative;
}

.section-sep__accent-wrap {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.section-sep__accent { height: 0.75rem; width: 33.333%; background-color: #22d3ee; }
.section-sep__accent--abs { position: absolute; height: 0.75rem; width: 33.333%; background-color: #22d3ee; }

/* ===== FOOTER ===== */
.site-footer {
    background-color: #133349;
    color: #fff;
    padding: 2rem 0;
}

.site-footer__inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    row-gap: 2rem;
}

@media (min-width: 768px) { .site-footer__inner { padding-right: 2.5rem; } }
@media (min-width: 1024px) { .site-footer__inner { align-items: flex-start; } }

.footer-logo-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-right: 1rem;
}

@media (min-width: 1024px) {
    .footer-logo-wrap { width: auto; justify-content: flex-start; }
}

.footer-logo { width: 2.5rem; }
@media (min-width: 768px) { .footer-logo { width: 3.5rem; } }

.footer-sep {
    display: none;
    height: 5rem;
    width: 1px;
    background-color: rgba(24, 191, 214, 0.3);
}

@media (min-width: 1024px) { .footer-sep { display: block; } }
.footer-sep--mr { margin-right: 1.5rem; }
.footer-sep--ml { margin-left: 1.5rem; }

.footer-socials-wrap { width: 100%; display: flex; justify-content: center; }
@media (min-width: 1024px) { .footer-socials-wrap { width: auto; } }

.footer-social-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #0f2a3d;
    padding: 0.75rem 4rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.footer-social-box__title { font-weight: 600; margin-bottom: 0.5rem; font-size: 1.125rem; }

.footer-social-box__links { display: flex; gap: 1.5rem; }
.footer-social-box__links a { color: #fff; font-size: 1.25rem; transition: color 150ms; }
.footer-social-box__links a:hover { color: #3AC8DC; }

.footer-contact-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem 2rem;
    padding-left: 1.25rem;
}

@media (min-width: 768px) { .footer-contact-wrap { flex-direction: row; } }
@media (min-width: 1024px) { .footer-contact-wrap { width: auto; justify-content: flex-start; } }

.footer-contact { display: flex; flex-direction: column; align-items: center; text-align: center; }
@media (min-width: 768px) { .footer-contact { align-items: flex-start; text-align: left; } }

.footer-contact__title { font-weight: 700; font-size: 1.25rem; margin-bottom: 0.25rem; }

.footer-contact__phone { font-size: 1rem; margin-bottom: 0.25rem; color: #fff; transition: color 150ms; }
.footer-contact__phone:hover { color: #2dd4bf; }

.footer-contact__email { display: flex; align-items: center; font-size: 0.875rem; }
.footer-contact__email i { margin-right: 0.5rem; }

.footer-ed-link {
    display: block;
    width: 9rem;
    height: 2rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media (min-width: 768px) { .footer-ed-link { margin-top: 3rem; } }
