/* SECTIONS */

section {
    font-size: 0.75rem;
    padding: var(--main-padding) !important;
}

/* POST CONTENTS */

.iframe-wrapper {
    margin: 0 auto;
    padding: 2em 0.5em;
    width: 100%;
    aspect-ratio: 1.414 / 1;
    max-width: 1440px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

#iframe-element {
    width: 100%;
    height: 100%;
}

.anchor-wrapper {
    align-self: end;
    display: flex;
    align-items: center;
    gap: 1em;
}

.anchor-wrapper>h3 {
    font-family: var(--regular-font);
    font-weight: 500;
    font-size: 1.15rem;
}

#anchor-element {
    padding: 1em 2em;
    height: fit-content;
    text-align: center;
    background-color: var(--company-color4);
    color: white;
}

@media (width>=768px) {
    section {
        font-size: 1rem;
    }
}

@media (width>=1024px) {
    section {
        font-size: 1.1rem;
    }

    .post-contents {
        max-width: 120ch;
    }
}

@media (width>=1440px) {
    section {
        font-size: 1.2rem;
    }
}