/* ------------------------------------------------ */
/* META DATA CONTAINER START */
/* ------------------------------------------------ */


/*.meta__data__container__wrapper .meta__data__container {*/
/*    display: flex;*/
/*    flex-direction: row;*/
/*    justify-content: start;*/
/*    align-items: center;*/

/*    gap: 2rem;*/
/*}*/

/*.meta__data__container__wrapper .meta__data__container .inner__container {*/
/*    display: flex;*/
/*    flex-direction: row;*/
/*    justify-content: start;*/
/*    align-items: center;*/

/*    gap: 0.4rem;*/
/*}*/

/*.meta__data__container__wrapper .meta__data__container .inner__container .text {*/
/*    color: var(--clr-border-black);*/
/*    color: var(--clr-333-black);*/
/*    font-size: var(--size-sm);*/
/*    font-weight: 500;*/
/*}*/

/*.pd__bt {*/
/*    padding-bottom: 1rem;*/
/*}*/

/* ------------------------------------------------ */
/* META DATA CONTAINER START */
/* ------------------------------------------------ */

/* ------------------------------------------------ */
/* META DATA CONTAINER START */
/* ------------------------------------------------ */

.meta__data__container__wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.meta__data__container__wrapper .meta__data__container {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;

    gap: 2rem;
}

.meta__data__container__wrapper .meta__data__container .inner__container {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;

    gap: 0.4rem;
}

.meta__data__container__wrapper .meta__data__container .inner__container .text {
    color: var(--clr-border-black);
    color: var(--clr-333-black);
    font-size: var(--size-sm);
    font-weight: 500;
}

.share__btn__wrapper {
    position: relative;
}

.share__btn__container {
    cursor: pointer;
}

.share__drop__down__container {
    position: absolute;
    top: 10;
    right: 0;
    display: none;
}

.share__drop__down__container__active {
    display: block;
}

.share__drop__down__container .platforms__list {
    background-color: var(--clr-a3a-black);
    background-color: var(--clr-ddd-black-title);
    border-radius: 0.5rem;

    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;

    gap: 0.4rem;
    padding: 1rem 1.4rem;
}

.platforms__list .link__text {
    color: var(--clr-black);
    font-weight: var(--size-base);
    font-weight: 400;
    cursor: pointer;

    transition: all 0.2s ease-in-out;
}

.platforms__list .link__text:hover {
    opacity: 0.8;
}


.platforms__list .divider__line {
    width: 100%;
    border: none;
    border-top: 1px solid var(--clr-black);
}

.pd__bt {
    padding-bottom: 1rem;
}

/* ------------------------------------------------ */
/* META DATA CONTAINER START */
/* ------------------------------------------------ */



/* ------------------------------------------------ */
/* ARTICLE SECTION START */
/* ------------------------------------------------ */

.article___body__section {
    background-color: var(--clr-white);
    color: var(--clr-black);
    border-radius: 1.8rem;

    padding: 2.8rem 1.2rem;
    /* margin-top: 6rem; */
}

.article__body__wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;

    gap: 2.5rem;
}

.title__description__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;

    gap: 0.8rem;
}

.article__title {
    color: var(--clr-dark-bg-green);
    font-size: var(--size-3xl);
    font-weight: 500;
}

.lg__bt__gap {
    padding-bottom: 1.8rem;
}

.subheading__block {
    color: var(--clr-dark-bg-green);
    font-size: var(--size-2xl);
    font-weight: 500;
}

.sub__subheading__block {
    color: var(--clr-dark-bg-green);
    font-size: var(--size-xl);
    font-weight: 500;
}

.lg__text__block {
    color: var(--clr-black);
    font-size: var(--size-lg);
    font-weight: 400;
}

.base__text__block {
    color: var(--clr-black);
    font-size: var(--size-base);
    font-weight: 400;
}

.sm__text__block {
    color: var(--clr-black);
    font-size: var(--size-base);
    font-weight: 400;
}

.ordered__list__with__description__block {
    color: var(--clr-black);
    font-size: var(--size-xl);
    font-weight: 500;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;

    gap: 1.5rem;
    padding-left: 1rem;
}

.ordered__list__with__description__block p {
    color: var(--clr-black);
    font-size: var(--size-base);
    font-weight: 400;
}

.un__ordered__list__block {
    color: var(--clr-black);
    font-size: var(--size-base);
    font-weight: 500;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;

    gap: 0.1rem;
    padding-left: 1.5rem;
}

.artile__banner__img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border: 1px solid var(--clr-border-green);
    border-radius: 1rem;
}


/* xxxs */
/* @media (min-width: 320px) {} */

/* xxs */
/* @media (min-width: 380px) {} */

/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
@media (min-width: 768px) {

    .artile__banner__img {
        width: 100%;
        height: 400px;
    }
}

/* lg */
@media (min-width: 1024px) {

    .artile__banner__img {
        width: 100%;
        height: 400px;
    }
}

/* xl */
@media (min-width: 1280px) {

    .article___body__section {
        background-color: var(--clr-white);
        color: var(--clr-black);
        border-radius: 5rem;
    
        padding: 3rem 0rem;
        /* margin-top: 6rem; */
    }

    .article__title {
        font-size: var(--size-page-header);
        font-weight: 500;
    }

    .subheading__block {
        font-size: var(--size-2xl);
        font-weight: 500;
    }

    .lg__text__block {
        font-size: var(--size-xl);
        font-weight: 400;
    }

    .base__text__block {
        font-size: var(--size-lg);
        font-weight: 400;
    }

    .sm__text__block {
        font-size: var(--size-base);
        font-weight: 400;
    }

    .un__ordered__list__block {
        font-size: var(--size-base);
        font-weight: 500;
    
        gap: 0.1rem;
        padding-left: 2rem;
    }

    .artile__banner__img {
        width: 850px;
        height: 490px;
        object-fit: cover;
        border: 1px solid var(--clr-border-green);
        border-radius: 1rem;
    }
    
}

/* 2xl */
/* @media (min-width: 1536px) {} */



/* ------------------------------------------------ */
/* ARTICLE SECTION START */
/* ------------------------------------------------ */