*{
    text-decoration: none;
    list-style: none;
    padding: 0;
    border: none;
    margin: 0;
    outline: none;
    box-sizing: border-box;
}

/* ===== 02. Global style ===== 
:root {
    --primary-color-050: #D6E6FF;
    --primary-color-100: #ADCDFF;
    --primary-color-600: #1944BD;
    --primary-color-800: #00235A;
    --secondary-color-050: #FDF1F6;
    --dark-mode-500: #262E3A;
    --dark-mode-800: #171C24;
}*/
body{
    line-height: 1.2;
}
.post-container {
    max-width: 1320px;
    padding: 40px;
    margin: 0 auto;
    background: white;
}
.post-layout {
    display: flex;
    flex-wrap: nowrap;
}
@media (max-width: 1400px) {
    .post-container {
        max-width: 1140px;
        padding: 40px 20px;
    }
}
@media (max-width: 1200px) {
    .post-container {
        max-width: 960px;
        padding: 40px 10px;
    }
}
@media (max-width: 992px) {
    .post-container {
        max-width: 1200px;
        padding: 40px 16px;
    }
    .post-layout {
        flex-direction: column;
    }
}



/* ===== 01. POST LIST ===== */
/* <!-- Sección 1 del post list --> */
/* <!-- Sección 1: Portada --> */
.pl-s1-main {
    max-width: 790px;
}
.pl-s1-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.pl-s1-portada {
    width: 790px;
    height: auto;
    margin-bottom: 10px;
}
.pl-s1-tcenter {
    text-align: center;
}
.pl-s1-title {
    max-width: 790px;
    margin-bottom: 10px;
    font-size: 1.953rem;
    font-weight: 500;
    color: var(--primary-color-800);
}
.pl-s1-title:hover {
    text-decoration: underline;
    text-decoration-color: var(--primary-color-100);
}
.pl-s1-info {
    display: inline-flex;
    align-items: center;
    margin-bottom: 50px;
}
.pl-s1-perfil-img {
    width: 19px;
    height: 19px;
    border-radius: 25px;
}
.pl-s1-perfil-name {
    margin: 0 0 0 5px;
    font-weight: 600;
    color: var(--primary-color-800);
}
.pl-s1-date {
    margin: 0 0 0 5px;
    font-weight: 600;
}
.pl-s1-content {
    display: none;
}
/* <!-- Sección 1: En el Top --> */
.pl-s1-sidebar {
    width: 430px;
    margin-left: 20px;
}
.pl-s1-sidebar-title {
    font-size: 1.563rem;
    font-weight: 700;
    border-bottom: 3px solid var(--primary-color-800);
    padding-bottom: 5px;
    margin-bottom: 15px;
    color: var(--primary-color-800);
}
.pl-s1-sidebar-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.pl-s1-sidebar-post {
    display: flex;
    margin-bottom: 15px;
}
.pl-s1-sidebar-thumbnail {
    width: 150px;
    height: auto;
    object-fit: cover;
}
.pl-s1-sidebar-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 270px;
    margin: 0 0 0 10px;
}
.pl-s1-sidebar-post-title {
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
}
.pl-s1-sidebar-post-title:hover {
    text-decoration: underline;
    text-decoration-color: var(--primary-color-100);
}
.pl-s1-sidebar-meta {
    display: flex;
    align-items: center;
    gap: 5px;
}
.pl-s1-sidebar-perfil-img {
    width: 19px;
    height: 19px;
    border-radius: 25px;
}
.pl-s1-sidebar-perfil-name,
.pl-s1-sidebar-date {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 700;
}
.pl-s1-sidebar-perfil-name {
    color: var(--primary-color-800);
}
@media (max-width: 1400px) {
    .pl-s1-main {
        max-width: 650px;
    }
    .pl-s1-title {
        max-width: 650px;
    }
    .pl-s1-portada {
        width: 650px;
    }
}
@media (max-width: 1200px) {
    .pl-s1-main {
        max-width: 620px;
    }
    .pl-s1-title {
        max-width: 620px;
    }
    .pl-s1-portada {
        width: 620px;
    }
    .pl-s1-sidebar {
        width: 300px;
    }
    .pl-s1-sidebar-thumbnail{
        width: 130px;
    }
    .pl-s1-sidebar-info {
        width: 160px;
    }
    .pl-s1-sidebar-post-title{
        font-size: 1rem;
    }
    .pl-s1-sidebar-perfil-img {
        width: 15px;
        height: 15px;
    }
    .pl-s1-sidebar-perfil-name,
    .pl-s1-sidebar-date {
        font-size: 0.688rem;
    }
}
@media (max-width: 992px) {
    .pl-s1-main {
        max-width: 100%;
    }
    .pl-s1-portada {
        width: 100%;
    }
    .pl-s1-tcenter {
        text-align: start;
    }
    .pl-s1-title {
        max-width: 100%;
    }
    .pl-s1-info {
        margin-bottom: 15px;
    }
    .pl-s1-content {
        display: flex;
        text-align: justify;
        margin-bottom: 30px;
    }
    .pl-s1-sidebar {
        width: 100%;
        margin: 0;
    }
    .pl-s1-sidebar-info {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .pl-s1-title {
        font-size: 1.563rem;
    }
    .pl-s1-sidebar-title {
        font-size: 1.25rem;
    }
    .pl-s1-sidebar-thumbnail {
        width: 100px;
    }
}




/* ===== 02. POST DETAIL ===== */
/* <!-- Contenido del post --> */
.post-main {
    max-width: 920px;
}
.post-title {
    max-width: 900px;
    margin-bottom: 10px;
    font-size: 1.953rem;
    font-weight: 500;
    color: var(--primary-color-800);
}
.post-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.post-perfil-image {
    width: 19px;
    height: 19px;
    border-radius: 25px;
}
.post-perfil-name {
    margin: 0 0 0 5px;
    font-weight: 600;
    color: var(--primary-color-800);
}
.post-date {
    margin: 0 0 0 5px;
    font-weight: 600;
}
.post-image {
    width: 920px;
    height: auto;
    margin-bottom: 15px;
}
.post-content {
    max-width: 920px;
    text-align: justify;
    border-bottom: 50px;
}

/* <!-- Columna derecha: más artículos --> */
.post-sidebar {
    width: 300px;
    margin-left: 20px;
}
.sidebar-title {
    font-size: 1.563rem;
    font-weight: 700;
    border-bottom: 3px solid var(--primary-color-800);
    padding-bottom: 5px;
    margin-bottom: 15px;
    color: var(--primary-color-800);
}
.sidebar-post-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.sidebar-post {
    display: flex;
    margin-bottom: 15px;
}
.sidebar-thumbnail {
    width: 130px;
    height: auto;
    object-fit: cover;
}
.sidebar-post-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 160px;
    margin: 0 0 0 10px;
}
.sidebar-post-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}
.sidebar-meta {
    display: flex;
    align-items: center;
    gap: 5px;
}
.sidebar-author-img {
    width: 15px;
    height: 15px;
    border-radius: 50%;
}
.sidebar-author-name,
.sidebar-date {
    margin: 0;
    font-size: 0.688rem;
    font-weight: 700;
    color: var();
}
.sidebar-author-name {
    color: var(--primary-color-800);
}
@media (max-width: 1400px) {
    .post-main {
        max-width: 780px;
    }
    .post-title {
        max-width: 780px;
    }
    .post-image {
        width: 780px;
    }
    .post-content {
        max-width: 780px;
    }
}
@media (max-width: 1200px) {
    .post-main {
        max-width: 620px;
    }
    .post-title {
        max-width: 620px;
    }
    .post-image {
        width: 620px;
    }
    .post-content {
        max-width: 620px;
    }
}
@media (max-width: 992px) {
    .post-main {
        max-width: 100%;
    }
    .post-title {
        max-width: 100%;
    }
    .post-image {
        width: 100%;
    }
    .post-content {
        max-width: 100%;
    }
    .post-sidebar {
        width: 100%;
        margin: 0;
    }
    .sidebar-post-info {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .post-title {
        font-size: 1.563rem;
    }
    .sidebar-title {
        font-size: 1.25rem;
    }
    .sidebar-thumbnail {
        width: 100px;
    }
    .sidebar-post-title {
        font-size: 0.875rem;
    }
}




/* ===== 03. STYLE POST ===== */
/* Post sections */
.post-sections-box {
    width: 100%;
    padding: 20px 20px 5px 20px;
    border-radius: 15px;
    margin: 0;
    margin-bottom: 10px;
    background: var(--primary-color-050);
}
.post-sections-box h6 {
    padding: 0;
    margin: 0 0 5px 0;
}
.post-sections-list li {
    margin-bottom: 5px;
}
.post-sections-list a{
    color: var(--primary-color-800);
}
.post-sections-list a:hover {
    text-decoration: underline;
    text-decoration-color: var(--primary-color-100);
}
h2[id] {
    scroll-margin-top: 96px;
}
@media (max-width: 768px) {
    .post-sections-list li {
        margin-bottom: 3px;
    }
    .post-sections-list a{
        font-size: 0.875rem;
    }
}


/* Titles */
.post-title-h2 {
    font-size: 1.953rem;
}
.post-title-h3 {
    font-size: 1.563rem;
}
.post-title-h4 {
    font-size: 1.25rem;
}
.post-title-h5 {
    font-size: 1rem;
}
@media (max-width: 768px) {
    .post-title-h2 {
        font-size: 1.563rem;
    }
    .post-title-h3 {
        font-size: 1.25rem;
    }
    .post-title-h4 {
        font-size: 1rem;
    }
    .post-title-h5 {
        font-size: 0.875rem;
    }
}


/* Images */
.post-img-cont{
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    text-align: center;
    overflow: hidden;
}
.post-img-cont-in{
    max-width: 50%;
    height: auto;
    margin-bottom: 20px;
    border: 1px dashed var(--primary-color-100);
}
@media (max-width: 600px) {
    .post-img-cont-in {
        max-width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
}


/* Tables */
.post-tab-div{
    width: 100%;
    margin-bottom: 20px;
    overflow-x: auto;
}
.post-table-div{
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
}
.post-tab-titles{
    color: white;
    background-color: var(--primary-color-800);
}
.post-tab-th{
    text-align: center;
    padding: 5px 10px;
    border: 1px solid var(--primary-color-100);
    font-size: 1rem;
}
@media (max-width: 768px) {
    .post-tab-th {
        font-size: 0.875rem;
        padding: 3px 5px;
    }
}


/* Amazon product */
.amazon-product-box {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    flex-wrap: wrap;
    padding: 16px;
    border: 1px solid #e1e1e1;
    border-radius: 15px;
    background-color: #fff;
}
.amazon-product-image-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 220px;
}
.amazon-product-image{
    align-items: center;
    width: auto;
    max-width: 220px;
    height: auto;
    max-height: 220px;
    object-fit: cover;
    border-radius: 8px;
}
.amazon-product-info{
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-left: 10px;
}
.amazon-product-info h3{
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
}
.amazon-product-title{
    text-decoration: none;
}
.amazon-product-rating{
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #f7a41e;
}
.amazon-product-price{
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #b12704;
}
.amazon-product-recomend {
    margin-bottom: 5px;
    text-align: justify;
    color: #333;
}
.amazon-buy-button{
    display: inline-block;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background-color: #ffa41c;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    align-self: flex-start;
}
.amazon-buy-button:hover{
    background-color: #ff8c00;
}
@media (max-width: 768px){
    .amazon-product-image-box {
        width: 200px;
        height: auto;
    }
    .amazon-product-image{
        max-width: 180px;
        height: auto;
    }
    .amazon-product-info h3 {
        font-size: 1rem;
    }
    .amazon-product-rating {
        font-size: 0.875rem;
    }
    .amazon-product-price {
        font-size: 1rem;
    }
    .amazon-buy-button {
        font-size: 0.875rem;
    }
}
@media (max-width: 576px) {
    .amazon-product-box{
        flex-direction: column;
        align-items: center;
    }
    .amazon-product-image{
        width: auto;
        max-width: 180px;
        margin-bottom: 16px;
    }
    .amazon-product-info{
        width: 100%;
        text-align: left;
    }
}


/* Web product */
.web-product-box{
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    flex-wrap: wrap;
    padding: 16px;
    border: 1px solid #e1e1e1;
    border-radius: 15px;
    background-color: #fff;
}
.web-product-image-box{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
}
.web-product-image{
    width: auto;
    max-width: 220px;
    height: auto;
    max-height: 220px;
    object-fit: cover;
    border-radius: 8px;
}
.web-product-info{
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-left: 10px;
}
.web-product-info h3{
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
}
.web-product-title{
    text-decoration: none;
}
.web-product-price{
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #b12704;
}
.web-product-recomend {
    margin-bottom: 5px;
    text-align: justify;
    color: #333;
}
.web-buy-button{
    display: inline-block;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background-color: var(--primary-color-800);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    align-self: flex-start;
}
.web-buy-button:hover{
    background-color: #1c1cff;
}
@media (max-width: 768px){
    .web-product-image-box {
        width: 200px;
    }
    .web-product-image{
        max-width: 180px;
        height: auto;
    }
    .web-product-info h3 {
        font-size: 1rem;
    }
    .web-product-price {
        font-size: 1rem;
    }
    .web-buy-button {
        font-size: 0.875rem;
    }
}
@media (max-width: 576px) {
    .web-product-box{
        flex-direction: column;
        align-items: center;
    }
    .web-product-image{
        width: auto;
        max-width: 180px;
        margin-bottom: 16px;
    }
    .web-product-info{
        text-align: left;
    }
}

/* Ad taxtodwn */
.ad-taxdown-post {
    margin: 0 0 20px 0;
    text-align: center;
}
.ad-taxdown-post img {
    max-width: 100%;
    height: auto;
}





.post-icon a, i{
    text-decoration: none;
    color: var(--text-color-nd);
}



.post-vid-cont{
    position: relative;
    padding-bottom: 56.25%; /* Relación de aspecto 16:9 */
    margin-bottom: 15px;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}
.post-vid-cont-in{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.author-box{
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
}
.author-photo{
    margin-right: 15px;
}
.profile-img{
    width: 120px;
    height: 120px;
    border-radius: 50%;
}
.author-info{
    display: flex;
    flex-direction: column;
}
.author-info p{
    font-size: 0.9rem;
}
.author-rrss a{
    font-size: 1.2rem;
}
/* POST Layer End */