/* Article Detail Page Styles - New Design */

:root {
  --primary-color: #063174;
  --text-dark: #121212;
  --text-body: #1a1a1a;
  --text-muted: #6c757d;
  --border-color: #dee2e6;
  --bg-light: #f8f9fa;
}

.article-page-wrapper {
  padding-top: 0;
}

/* Hero Image (Below Title, Inline) */
.article-hero-inline {
  width: 100%;
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.hero-image-inline {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.hero-caption-inline {
  padding: 0.75rem 1rem;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 0.875rem;
  text-align: center;
  margin-top: -2px;
  border-radius: 0 0 4px 4px;
}

/* Container */
.article-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Article Header */
.article-header-new {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Shoulder - Above Headline */
.article-shoulder {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

/* Article Title */
.article-title-new {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Kicker - Below Headline */
.article-kicker {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-body);
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-style: italic;
}

/* Metadata Row */
.article-meta-new {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  margin-bottom: 1rem;
}

.meta-left {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.meta-item {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.meta-item strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* Author Row with Profile Picture */
.author-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-profile-image {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border-color);
}

.author-name-bangla {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
  transition: color 0.2s ease;
}

.author-name-bangla:hover {
  color: #063174;
  text-decoration: underline;
}

/* Social Share Buttons */
.social-share {
  display: flex;
  gap: 0.5rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s;
}

.social-btn:hover {
  background: var(--bg-light);
  color: var(--primary-color);
  border-color: var(--primary-color);
  text-decoration: none;
}

.social-btn:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Article Divider */
.article-divider {
  margin: 1.5rem 0;
  border: none;
  border-top: 1px solid var(--border-color);
}

/* Taxonomy (Categories & Tags) */
.article-taxonomy-new {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.taxonomy-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.taxonomy-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-right: 0.25rem;
}

.article-taxonomy-new .badge {
  font-size: 0.8125rem;
  padding: 0.375rem 0.75rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
}

.article-taxonomy-new .badge:hover {
  opacity: 0.8;
}

/* Article Content */
.article-content-new {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 2rem;
}

.article-content-new p {
  margin-bottom: 1.5rem;
}

.article-content-new h2 {
  font-size: 28px;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.article-content-new h3 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.article-content-new img {
  max-width: 100%;
  height: auto;
  margin: 2rem auto;
  display: block;
  border-radius: 4px;
}

.article-content-new figure {
  margin: 2rem 0;
  text-align: center;
}

.article-content-new figcaption {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-style: italic;
}

.article-content-new blockquote {
  border-left: 4px solid var(--primary-color);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-muted);
}

.article-content-new ul,
.article-content-new ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.article-content-new li {
  margin-bottom: 0.5rem;
}

.article-content-new a {
  color: var(--primary-color);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-content-new a:hover {
  color: #042757;
}

/* Related Articles */
.related-section-new {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-color);
}

.related-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.related-card {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.related-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
}

.related-card-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.related-card-image-placeholder {
  width: 100%;
  height: 150px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.related-card-body {
  padding: 1rem;
}

.related-card-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-dark);
  margin: 0;
}

/* Sidebar */
.sidebar-sticky {
  position: sticky;
  top: 20px;
  align-self: start;
}

.sidebar-widget {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

.sidebar-widget:first-child {
  margin-top: 2rem;
}

.widget-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-color);
}

.ad-banner {
  width: 100%;
  min-height: 250px;
  background: var(--bg-light);
  border: 2px dashed var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s;
  border-radius: 4px;
}

.ad-banner:hover {
  background: #e9ecef;
  border-color: var(--primary-color);
  text-decoration: none;
  color: var(--text-muted);
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-list-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.news-list-item:last-child {
  border-bottom: none;
}

.news-list-item a {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-body);
  transition: color 0.2s;
}

.news-list-item a:hover {
  color: var(--primary-color);
}

.news-icon {
  color: var(--primary-color);
  font-size: 0.75rem;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.news-content {
  flex: 1;
}

.news-title {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0.25rem;
}

.news-time {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Latest Articles Widget */
.home-latest-widget {
  background-color: #ffffff;
  padding: 1.5rem;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.home-latest-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 0;
  color: #333;
}

.home-latest-underline {
  height: 3px;
  width: 60px;
  background-color: #28a745;
  margin-bottom: 1rem;
}

.home-latest-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.home-latest-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e9ecef;
}

.home-latest-item:last-child {
  border-bottom: none;
}

.home-latest-link {
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s;
}

.home-latest-link:hover,
.home-latest-link:focus {
  color: #28a745;
  outline: none;
}

.home-latest-link:focus-visible {
  outline: 2px solid #28a745;
  outline-offset: 2px;
}

/* Most Read Widget */
.home-mostread-widget {
  background-color: #ffffff;
  padding: 1.5rem;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.home-mostread-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 0;
  color: #333;
}

.home-mostread-underline {
  height: 3px;
  width: 60px;
  background-color: #28a745;
  margin-bottom: 1rem;
}

.home-mostread-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.home-mostread-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e9ecef;
}

.home-mostread-item:last-child {
  border-bottom: none;
}

.home-mostread-badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #28a745;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
  flex-shrink: 0;
}

.home-mostread-link {
  flex: 1;
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s;
}

.home-mostread-link:hover,
.home-mostread-link:focus {
  color: #28a745;
  outline: none;
}

.home-mostread-link:focus-visible {
  outline: 2px solid #28a745;
  outline-offset: 2px;
}

@media (max-width: 575.98px) {
  .home-latest-widget,
  .home-mostread-widget {
    padding: 1rem;
  }
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .article-title-new {
    font-size: 36px;
  }

  .article-content-new {
    font-size: 16px;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .article-title-new {
    font-size: 28px;
  }

  .article-content-new {
    font-size: 16px;
  }

  .article-content-new h2 {
    font-size: 24px;
  }

  .article-content-new h3 {
    font-size: 20px;
  }

  .meta-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .social-share {
    margin-top: 0.5rem;
  }

  .sidebar-sticky {
    position: static;
    margin-top: 2rem;
  }

  .article-meta-new {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .article-container {
    max-width: 1100px;
  }
}

/* ============================================
   Photo Feature Layout Styles
   ============================================ */

/* Photo Feature Header */
.photo-feature-header {
  margin-bottom: 2rem;
}

.photo-feature-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  font-family: 'Noto Serif Bengali', serif;
}

.photo-feature-summary {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 1.5rem;
  font-weight: 400;
  font-family: 'Noto Serif Bengali', serif;
}

.photo-feature-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.photo-feature-author-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.photo-feature-author-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.photo-feature-author-image {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border-color);
}

.photo-feature-author-name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
  transition: color 0.2s ease;
}

.photo-feature-author-name:hover {
  color: #063174;
  text-decoration: underline;
}

.photo-feature-date {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.photo-feature-social {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.photo-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s;
  background-color: #d1d5db;
  color: #fff;
  border: none;
}

.photo-social-icon {
  font-size: 1rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1;
  color: #fff;
}

.photo-social-btn i {
  font-size: 1.1rem;
  color: #fff;
}

.photo-social-btn:hover {
  background-color: #9ca3af;
  transform: translateY(-1px);
  text-decoration: none;
}

.photo-social-btn:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Photo Feature Gallery */
.photo-feature-gallery {
  margin-bottom: 2rem;
}

.photo-feature-item {
  margin-bottom: 3rem;
  position: relative;
}

.photo-feature-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  font-family: 'Noto Serif Bengali', serif;
}

.photo-counter-current,
.photo-counter-total {
  font-size: 1.125rem;
}

.photo-counter-separator {
  margin: 0 0.25rem;
  color: var(--text-muted);
}

.photo-feature-image-wrapper {
  width: 100%;
  margin-bottom: 1rem;
  position: relative;
}

.photo-feature-image {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  display: block;
  border-radius: 4px;
  background: #f8f9fa;
}

.photo-feature-caption {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-body);
  text-align: left;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1rem;
  font-family: 'Noto Serif Bengali', serif;
}

.photo-feature-location {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.photo-feature-body {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-body);
}

/* Photo Feature Sidebar */
.photo-feature-sidebar {
  position: sticky;
  top: 20px;
  align-self: start;
}

/* Tabbed Widget */
.sidebar-tabbed-widget {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.sidebar-tabs {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 2px solid var(--border-color);
  background: var(--bg-light);
}

.sidebar-tab {
  flex: 1;
  margin: 0;
}

.sidebar-tab button {
  width: 100%;
  padding: 0.875rem 1rem;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Noto Serif Bengali', serif;
}

.sidebar-tab.active button {
  color: #218838;
  border-bottom-color: #218838;
  background: #fff;
  font-weight: 600;
}

.sidebar-tab:not(.active) button:hover {
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.5);
}

.sidebar-tab-content {
  display: none;
  padding: 1rem;
  padding-top: 1.5rem;
}

.sidebar-tab-content.active {
  display: block;
}

/* Sidebar Articles List */
.sidebar-articles-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-article-item {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
}

.sidebar-article-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sidebar-article-link {
  display: flex;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-body);
  transition: color 0.2s;
}

.sidebar-article-link:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.sidebar-article-thumb {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.sidebar-article-title {
  font-size: 0.9375rem;
  line-height: 1.4;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  font-family: 'Noto Serif Bengali', serif;
}

.sidebar-more-link {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.btn-sidebar-more {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: #28a745;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background-color 0.2s;
  font-family: 'Noto Serif Bengali', serif;
}

.btn-sidebar-more:hover {
  background-color: #218838;
  color: #fff;
  text-decoration: none;
}

/* Read More Section */
.sidebar-read-more {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.sidebar-read-more-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-color);
  font-family: 'Noto Serif Bengali', serif;
}

.sidebar-read-more-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-read-more-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e9ecef;
}

.sidebar-read-more-list li:last-child {
  border-bottom: none;
}

.sidebar-read-more-list a {
  text-decoration: none;
  color: var(--text-body);
  font-size: 0.9375rem;
  line-height: 1.5;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s;
  font-family: 'Noto Serif Bengali', serif;
}

.sidebar-read-more-list a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

/* Photo Feature Read More Section */
.photo-feature-read-more-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.photo-feature-read-more-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
  font-family: 'Noto Serif Bengali', serif;
}

.photo-feature-read-more-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.photo-feature-read-more-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.photo-feature-read-more-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.photo-feature-read-more-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.photo-feature-read-more-image-wrapper {
  width: 100%;
  overflow: hidden;
  background-color: #f8f9fa;
  position: relative;
}

.photo-feature-read-more-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.photo-feature-read-more-card:hover .photo-feature-read-more-image {
  transform: scale(1.05);
}

.photo-feature-read-more-image-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #495057;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.875rem;
}

.photo-feature-read-more-heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
  margin: 0;
  padding: 1rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s;
  font-family: 'Noto Serif Bengali', serif;
}

.photo-feature-read-more-card:hover .photo-feature-read-more-heading {
  color: var(--primary-color);
}

/* Responsive Photo Feature */
@media (max-width: 991.98px) {
  .photo-feature-title {
    font-size: 28px;
  }

  .photo-feature-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .photo-feature-social {
    margin-left: 0;
  }

  .photo-feature-sidebar {
    position: static;
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .photo-feature-title {
    font-size: 24px;
  }

  .photo-feature-image {
    max-height: 400px;
  }

  .photo-feature-counter {
    font-size: 0.9375rem;
  }

  .sidebar-article-thumb {
    width: 60px;
    height: 45px;
  }

  .photo-feature-read-more-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }

  .photo-feature-read-more-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .photo-feature-read-more-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
