﻿.post-info-value {
    color: #a8a8a8;
}
.post-info {
    margin-bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-top: 3px;
}
    .post-info ul {
        margin-bottom: 0;
        justify-self: start;
    }
    .post-info ul li {
        white-space: nowrap;
        display: inline-block;
    }

    .post-recommend {
    display: grid;
    grid-template-columns: 3fr 7fr;
    grid-gap: 5px;
    margin-bottom: 1em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 1em;
}
    .post-recommend:last-of-type {
        border-bottom: none;
    }
    .post-recommend:hover {
        transform: scale(1.02);
    }
    .post-recommend a {
        color: inherit;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .post-recommend:hover a {
        color: #555 !important;
    }

.post-recommend-image {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .post-recommend-image img {
        max-width: 100%;
        max-height: 5em;
        border-radius: 5px;
        transition: transform 0.3s ease;
        filter: brightness(0.85);
    }
.post-recommend:hover .post-recommend-image img {
    transform: scale(1.02);
    filter: none;
}
.post-recommend-text {
}
    .post-recommend-text h6 {
        font-size: 1em;
        margin-bottom: 0;
        font-weight: bold;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        line-height: 1.25em;
        max-height: calc(1.25em * 2);
    }
    .post-recommend-text p {
        font-size: 1em;
        margin-bottom: 0;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        line-height: 1.25em;
        max-height: calc(1.25em * 2);
    }
.post-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
    .post-image img {
        max-height: 50vh;
        border-radius: 5px;
    }
.post-title-description {
    color: gray;
}
img.mw100 {
    max-width: 100%;
    height: inherit;
    width: inherit;
}
.post-title-description p {
    margin-bottom: 0.5em;
}
.page-title h2 {
    padding-top: 0.5em;
    margin-bottom: 0;
    width: 100%;
}
.post-info > ul > li {
    padding-right: 5px;
}
.post-text {
    color: rgb(33, 37, 41);
    font-size: 1em;
}
.post-share {
    justify-self: end;
}
.btn-facebook {
    background-color: #1877F2;
    color: white;
    border-color: #1877F2;
}

.btn-twitter {
    background-color: #1DA1F2;
    color: white;
    border-color: #1DA1F2;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border-color: #25D366;
}

.btn-linkedin {
    background-color: #0077B5;
    color: white;
    border-color: #0077B5;
}

/* Evitar que Bootstrap cambie los colores en hover */
.btn-facebook:hover {
    background-color: #145DBF;
    border-color: #145DBF;
    color: white;
}

.btn-twitter:hover {
    background-color: #0D8EDB;
    border-color: #0D8EDB;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #1EBE5C;
    border-color: #1EBE5C;
    color: white;
}

.btn-linkedin:hover {
    background-color: #005582;
    border-color: #005582;
    color: white;
}


.contact-info-container {
    position: sticky;
    top: 6em;
    z-index: 1;
}
