.ratio-wrapper {
  width: 100%;
}

.ratio-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.ratio-inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Aspect ratio específicos */
.ratio-2-42-1 .ratio-inner {
  padding-top: 41.32%; /* 2.42:1 */
}

.ratio-16-9 .ratio-inner {
  padding-top: 56.25%; /* 16:9 */
}

.ratio-16-9-img {
  aspect-ratio: 16 / 9; /* largura / altura */
  object-fit: cover;    /* cobre o espaço sem distorcer */
  width: 100%;          /* responsivo */
  height: auto;         /* permite redimensionamento proporcional */
  display: block;       /* remove gaps de inline-img */
}

.post-link {
    color: #15c286;
}

.post-link:hover {
    color: #15d286;
}

.share-btn-container {
    background-color: #faf0e6;
    display: flex;
    flex-direction: column;
    padding: 10px;
    border-bottom: 2px solid #4f4f4f;
    position: fixed;
    top: 110px;
    transform: translateY(-50%);
    right: 1.2%;
    transform: translateX(-1%);
    z-index: 1;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 180ms ease;
    opacity: 0;
    pointer-events: none;
    will-change: transform, opacity;
}

.share-btn-container.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.share-btn-container a {
    margin: 6px 0;
    transition: 550ms;
}

.share-btn-container a:hover {
    transform: scale(1.2);
}

.share-btn-container a i {
    font-size: 20px;
}

.editPost {
    margin-bottom: 10px;
    margin-left: 10px;
}

.post img {
    border-radius: 2px;
}

.m-table {
    font-size: 14px;
}

.table-faded-text {
    border-right: 1px solid #cccccc;
}

section p {
    color: #fff5ee;
}

.commentBtn {
    background-color: #15c286;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    box-shadow: none;
}

.commentBtn:hover {
    background-color: #15d286;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    box-shadow: none;
}

.commentBtn:focus {
    background-color: #15e286;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    box-shadow: none;
}

.commentBtnN {
    background-color: #ec0f47;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    box-shadow: none;
}

.commentBtnN:hover {
    background-color: #ed0f47;
    box-shadow: none;
}

.commentBtnN:focus {
    background-color: #ee0f47;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    box-shadow: none;
}

.authorArea, .messageArea {
    text-indent: 0px;
}

.authorSocials {
    margin-right: 6px;
}