.rich-text-area {
    --padding: 24px;
    
    padding: var(--padding);  
    color: var(--night-sky);
    fill: var(--azamara-blue); 
}

.rich-text-area h1 {
    font-style: normal;
    font-weight: 420;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: 0.025em;

    margin-bottom: 24px;
}

.rich-text-area h2 {
    font-style: normal;
    font-weight: 420;
    font-size: 30px;
    line-height: 38px;
    letter-spacing: 0.025em;

    margin-bottom: 16px;
}

.rich-text-area h3 {
    font-style: normal;
    font-weight: 420;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.025em;

    margin-bottom: 16px;
}

.rich-text-area h4 {
    font-style: normal;
    font-weight: 390;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;

    margin-bottom: 16px;
}

.rich-text-area :is(p, ol, ul) {
    font-style: normal;
    font-weight: 390;
    font-size: 16px;
    line-height: 24px; 
    letter-spacing: 0.05em; 

    margin-bottom: 24px;
}

.rich-text-area.about-azamara {
    color: var(--night-sky);
    background-color: #fff;
}

.rich-text-area a {
    text-decoration: underline;
}

.rich-text-area a[download] {
    text-decoration: none;
    font-weight: 420;
    display: inline-flex;
    align-items: center;
}

.rich-text-area .cta {
    background-color: var(--sunset);
    color: #fff;
    fill: #fff;
    text-decoration: none;

    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    font-weight: 420;

    width: fit-content;
    height: 56px;
    border-radius: 50rem;
    padding: .5em 1em;

    transition: background-color .3s;
}

.rich-text-area .cta svg {
    margin-left: .5em;
}

.rich-text-area .cta:hover {
    background-color: var(--dark-sunset);
}

.rich-text-area blockquote {
    background-color: var(--white-sand);
    padding: 24px;
    margin: 0;
    margin-bottom: 24px;
}

.rich-text-area blockquote p:last-of-type {
    margin-bottom: 0;
}

.rich-text-area table {
    border: none;
    margin-bottom: 24px;
    width: 100%;

    font-size: 14px;
}

.rich-text-area table thead {
    color: var(--pure-white);
    background-color: var(--azamara-blue);
    text-transform: uppercase;
}

.rich-text-area table tbody {
    color: black;
    font-weight: 390;
}

.rich-text-area table tbody tr:nth-child(2n) {
    background-color: var(--white-sand);
}

.rich-text-area table :is(td, th) {
    padding: 8px 16px;
}

.rich-text-area table.with-borders td {
    border: 1px solid var(--dusk);
}

.rich-text-area table p {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;

    margin: 0;
    padding: 0;
}

.rich-text-area table.narrow {
    border: 1px solid var(--azamara-blue);
    margin-bottom: 0;
}

.rich-text-area table.narrow tbody tr {
    background-color: transparent;
}

.rich-text-area table.narrow tbody tr td:first-child {
    font-weight: 450;
    width:0.1%;
    white-space: nowrap;
}

.rich-text-area .table-wrapper {
    margin-bottom: 24px;
    overflow-x: scroll;
}

.rich-text-area .table-wrapper::-webkit-scrollbar {
    display: none;
}

/* -sm breakpoint */
@media (min-width: 576px) {
    .rich-text-area {
        --padding: 48px;    
    }

    .rich-text-area h1 {
        font-size: 48px;
        line-height: 60px;
    }

    .rich-text-area h2 {
        font-size: 36px;
        line-height: 44px;
    }
}

/* -md breakpoint */
@media (min-width: 768px) {

}

/* -lg breakpoint*/
@media (min-width: 992px) {
    .rich-text-area :is(p, ol, ul) {
        font-style: normal;
        font-weight: 390;
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 0.05em;

        margin-bottom: 24px;
    }
}

/* -xl breakpoint */
@media (min-width: 1200px) {

}

/* -xxl breakpoint */
@media (min-width: 1400px) {

}