.marketing-section {
    padding: 64px 20px;
    background: #fff;
    color: #005775;
}
.marketing-section--sand {
    background-color: #f7f3e4;
    background-image: linear-gradient(rgba(247, 243, 228, .88), rgba(247, 243, 228, .88)), url('images_p/diagonal-noise.png');
}
.marketing-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.marketing-heading {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
}
.marketing-heading h1,
.marketing-heading h2 {
    margin: 6px 0 12px;
    color: #005775;
}
.marketing-heading p {
    margin: 0;
    color: #6f6f6e;
    font-size: 18px;
    line-height: 1.55;
}
.marketing-eyebrow,
.marketing-date {
    color: #ff9600;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.marketing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.marketing-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.marketing-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #ddd9cd;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 87, 117, .08);
    color: #005775;
}
.marketing-card--link {
    transition: transform 180ms ease, box-shadow 180ms ease;
    text-decoration: none;
}
.marketing-card--link:hover,
.marketing-card--link:focus {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(0, 87, 117, .16);
    color: #005775;
    text-decoration: none;
}

.marketing-card__image {
    display: block;
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.marketing-card__body {
    display: flex;
    height: 100%;
    padding: 26px;
    flex-direction: column;
    align-items: flex-start;
}

.marketing-card__body h3 {
    margin: 5px 0 10px;
    color: #005775;
    font-size: 24px;
}

.marketing-card__body p {
    margin: 0 0 20px;
    color: #6f6f6e;
    font-size: 16px;
    line-height: 1.55;
}

.marketing-card__body .marketing-button {
    margin-top: auto;
}

.marketing-button {
    display: inline-block;
    padding: 10px 24px;
    border: 2px solid #005775;
    border-radius: 24px;
    background: transparent;
    color: #005775;
    font-family: Georgia, Times, 'Times New Roman', serif;
    font-size: 15px;
    font-style: italic;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
    text-decoration: none;
    transition: background-color 180ms ease, color 180ms ease;
}

.marketing-button:hover,
.marketing-button:focus {
    background: #005775;
    color: #fff;
    text-decoration: none;
}

.marketing-button--aqua {
    border-color: #38c3e3;
    background: #38c3e3;
    color: #fff;
}

.marketing-button--aqua:hover,
.marketing-button--aqua:focus {
    border-color: #fff;
    background: #fff;
    color: #005775;
}

.marketing-note {
    margin: 24px 0 0;
    color: #6f6f6e;
    font-size: 14px;
    text-align: center;
}

.marketing-feature,
.marketing-owner {
    display: grid;
    overflow: hidden;
    grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
    border: 1px solid #ddd9cd;
}

.marketing-feature {
    max-width: 1000px;
    margin: 0 auto;
    border: 0;
    background: #005775;
}

.marketing-feature img,
.marketing-owner img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.marketing-feature__content,
.marketing-owner__content {
    display: flex;
    padding: 48px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.marketing-feature__content h2 {
    margin: 8px 0 14px;
    color: #fff;
}

.marketing-feature__content p {
    margin: 0 0 24px;
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
}

.marketing-owner {
    max-width: 1000px;
    margin: 0 auto 56px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(0, 87, 117, .1);
}

.marketing-owner__content h2 {
    margin: 8px 0 14px;
    color: #005775;
}

.marketing-owner__content p {
    margin: 0;
    color: #6f6f6e;
    font-size: 17px;
    line-height: 1.65;
}

.marketing-page-header {
    padding: 80px 20px;
    background-color: #005775;
    background-image: linear-gradient(rgba(0, 87, 117, .9), rgba(0, 87, 117, .9)), url('images_p/diagonal-noise.png');
    color: #fff;
    text-align: center;
}

.marketing-page-header h1 {
    margin: 0 0 12px;
    color: #fff;
}

.marketing-page-header p {
    max-width: 620px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.55;
}

.marketing-price {
    margin: 0 0 18px;
    color: #ff9600;
    font-family: Georgia, Times, 'Times New Roman', serif;
    font-size: 26px;
    font-style: italic;
    font-weight: 700;
}

.marketing-specs {
    display: flex;
    width: 100%;
    margin: 4px 0 20px;
    gap: 20px;
}

.marketing-specs div {
    flex: 1;
}

.marketing-specs dt {
    color: #8d8d8b;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.marketing-specs dd {
    margin: 2px 0 0;
    color: #2c2c2b;
    font-size: 15px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .marketing-grid--three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .marketing-section {
        padding: 44px 20px;
    }

    .marketing-grid,
    .marketing-grid--three,
    .marketing-feature,
    .marketing-owner {
        grid-template-columns: 1fr;
    }

    .marketing-card__image {
        height: 220px;
    }

    .marketing-feature img,
    .marketing-owner img {
        min-height: 0;
        max-height: 360px;
    }

    .marketing-feature__content,
    .marketing-owner__content {
        padding: 32px 26px;
    }

    .marketing-page-header {
        padding: 56px 20px;
    }
}
