:root { --tnr-red:#ee2926; --tnr-black:#000; --tnr-text:#3a3a3a; }


.article-parent-container {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.article-container {
    display: flex;
    column-gap: 20px;
}

.featured-image {
    height: 150px !important;
    max-height: 150px !important;
    background-color: grey !important;
    min-width: 35% !important;
    max-width: 35% !important;
    padding: 0 !important;
}

#movie-review-app .featured-image, #tv-review-app .featured-image {
    height: 120px !important;
    max-height: 120px !important;
    background-color: grey !important;
    min-width: 120px !important;
    max-width: 120px !important;
    padding: 0 !important;
}

.featured-image img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
}

.article-info {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    width: 65% !important;
}

.article-info .category {
    color: var(--tnr-red);
    text-transform: uppercase;
    font-family: "Karla", 'EB Garamond', serif;
    font-size: 0.75rem;
    font-weight: 700;
    box-sizing: border-box;
}

.article-info h4 {
    color: var(--tnr-black);
    font-family: "Kepler-std Semicondensed Display", 'EB Garamond', serif;
    font-size: 29px;
    font-weight: bold;
    line-height: 28px;
    margin-bottom: 0 !important;
}

.article-info .excerpt {
    text-align: left;
    color: var(--tnr-text);
    font-family: "Karla", 'EB Garamond', serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.2em;
}

.article-info .byline {
    text-align: left;
    color: var(--tnr-text);
    font-family: "Karla", 'EB Garamond', serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block !important;
}

.article-parent-container .tnr-divider-separator {
    border-top: .25px dotted #000;
    width: 100%;
    min-height: initial;
    height: auto;
    display: inline-block;
}

.pagination {
    font-size: 1rem;
    text-transform: uppercase !important;
    display: flex;
    align-items: center;
    column-gap: 10px !important;
}

.pagination .current-page {
    color: var(--tnr-red) !important;
}

.pagination .page {
    cursor: pointer;
}

.pagination .button {
    font-size: .75rem !important;
    border-radius: 50%;
    padding: 10px 13px;
}

.pagination .btn-plural {
    padding: 10px !important;
}

@media screen and (max-width: 767px) {
    .featured-image {
        height: 100px !important;
        max-height: 100px !important;
    }

    #movie-review-app .featured-image, #tv-review-app .featured-image {
        min-width: 36% !important;
        max-width: 36% !important;
    }
}

/* Skeleton Loader Styles */
.skeleton {
  animation: skeleton-loading 1.5s linear infinite alternate;
  background: #ddd;
  border-radius: 4px;
}

.skeleton-image {
  height: 120px !important;
  max-height: 120px !important;
  min-width: 120px !important;
  max-width: 120px !important;
}

.skeleton-title {
  height: 28px;
  width: 90%;
  margin-bottom: 10px;
}

.skeleton-byline {
  height: 14px;
  width: 60%;
}

@keyframes skeleton-loading {
  0% {
    background-color: hsl(200, 20%, 85%);
  }
  100% {
    background-color: hsl(200, 20%, 95%);
  }
}

@media screen and (max-width: 767px) {
  .skeleton-image {
    min-width: 36% !important;
    max-width: 36% !important;
  }
}