@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root{
    /* ## Colors */
--Very-Dark-Grayish-Blue: hsl(217, 19%, 35%);
--Desaturated-Dark-Blue: hsl(214, 17%, 51%);
--Grayish-Blue: hsl(212, 23%, 69%);
--Light-Grayish-Blue: hsl(210, 46%, 95%);

}

*, 
::before, 
::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Manrope", sans-serif;
    background: var(--Grayish-Blue);
    font-size: 13px;

}

.container{
    display: grid;
    grid-template-rows: 1fr auto;
    min-height: 100vh;
    place-content: center;
    place-items: center;
    
}

.card{
    overflow: hidden;
    max-width: 680px;
    height: 260px;
    display: flex;
    background: #fff;
    border-radius: 20px 20px 20px 20px;
}   

.card__image-container{
    /* border: 2px solid black; */
    width: 90%;
    height: 100%;
}

.card__image{
    display: block;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
    
}

.card__content{
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    min-height: 100%;
    gap: 15px;   
}

.card__title{
    font-size: 1.2em;
    color: var(--Very-Dark-Grayish-Blue);
}

.card__description{
    color: var(--Desaturated-Dark-Blue);
    font-size: 0.8em;
}

.card__footer {
    width: 100%;
    /* border: 2px solid black; */
    position: relative;
    display: flex;
    margin-top: 20px;
}

.card__author{
    /* border: 2px solid blue; */
    width: 100%;
    height: 100%;
    display: inline-flex;
    justify-content: start;
    align-items: center;
}

.card__author-image{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: block;
}

.card__author-info{
    margin-left: 10px;
    
}
.card__share-button{
    position: absolute;
    top: 25%;
    right: 0px;
    /* border: 2px solid black; */
    border-radius: 50%;
    height: 30px;
    width: 30px;
    border: none;
}

.share-container {
    position: relative;
}

/* Overlay */
.card__share-overlay {
    display: none;
    position: absolute;
    bottom: 110%;
    right: -20px;
    background: var(--Very-Dark-Grayish-Blue);
    padding: 15px 30px;
    border-radius: 10px;
    gap: 15px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 100;
    object-fit: contain;
}

/* Triángulo */
.card__share-overlay::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 28px;
    border-width: 10px;
    border-style: solid;
    border-color: var(--Very-Dark-Grayish-Blue) transparent transparent transparent;
}

.card__share-overlay.active {
    display: flex;
}

.card__social-icon{
    width: 100%;
    height: 100%;
    /* border: 2px solid black; */
    display: grid;
    grid-auto-flow: column; /* Coloca elementos en columna (horizontal) */
    justify-content: end;   /* Alinea a la derecha */
    align-items: center;     /* Centra verticalmente */
    gap: 1rem;
   
}

.card__social-modificar{
    vertical-align: bottom;
    
}




