body {
    font-size: 1.2rem;
}

button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 1.2rem;
}

code {
    font-size: 1rem;
    background-color: var(--primary-color-75);
    color: var(--secondary-color);
    padding: 0.2em;
    border-radius: 5px;
    white-space: pre-wrap;
    overflow-wrap: break-word;
}

code svg {
    position: relative;
    top: 0.25em;
}

code .iconify {
    position: relative;
    top: 0.25em;
}

.post-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    margin: 0 auto 100px auto;
}

.post-header {
    width: 100%;
    margin: 40px auto 0 auto;
}

.box-container-post {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    padding: 20px;
}

figure {
    margin: 0;
    padding: 0;
}

figcaption {
    text-align: justify;
    margin: 15px 0;
    font-size: 1rem;
    margin-top: 0.5em;
    margin-bottom: 1em;
    text-align: center;
}

.post-header img,
.post-header video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 2/1;
    border-radius: 25px;
    object-fit: cover;
}

.post-header h1 {
    text-align: left;
    margin: 15px 0 0 0;
    line-height: 1;
}

.post-date {
    text-transform: uppercase;
    text-align: center;
    margin: 1% 0;
    font-size: 0.8em;
    font-weight: bold;
    position: relative;
    display: inline-block;
    padding: 0;
}

.post-date::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-color);
    width: 100%;
    margin-top: -5%;
}

.post-article {
    width: 100%;
}

.post-highlight {
    position: relative;
    margin: 20px 0;
    /* border: 1px solid var(--primary-color-50); */
    box-shadow: var(--box-shadow-light);
    border-radius: 25px;
    overflow: hidden;
    z-index: 0;
    padding: 15px;
    font-size: 1.2rem;
}

.post-highlight h2 {
    margin: 0;
    text-transform: capitalize;
}

.post-highlight::before {
    content: "";
    position: absolute;
    top: -35%;
    right: -45%;
    width: 150%;
    height: 150%;
    background-image: radial-gradient(circle, rgba(244, 117, 181, 1), rgba(251, 169, 142, 1), rgba(0, 0, 0, 0));
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    z-index: -1;
}

.post-content {}

.post-content h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 20px;
}

.post-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.post-content img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-medium);
}

.post-content p {
    text-align: justify;
    margin: 15px 0;
}

@media screen and (max-width: 1000px) {
    .post-area {
        width: 90%;
    }

    .post-header img,
    .post-header video {
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: 1/1.25;
        border-radius: 25px;
        object-fit: cover;
    }
}