/* Ajánlott desktop cikkek szekció - Related Stories */
.desktop-recommended-wrapper {
  position: relative;
  margin: 30px 0;
  width: 100%;
}

.desktop-recommended-articles {
  background: #fff;
  padding: 10px;
  border: 1px solid #ddd;
  border-left: 3px solid #268d83;
  position: relative;
  left: calc(-270px - 30px); /* topics-sidebar width + gap */
  width: calc(100% + 270px + 30px); /* topics-sidebar width + gap + 100% */
}

.article-content-layout {
  position: relative;
}

.desktop-recommended-articles .desktop-section-title h3 {
  font-family: 'Founders Grotesk Condensed', sans-serif !important; 
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin: 0 !important;
  padding: 0 0 10px 0 !important;
  border-bottom: 2px solid rgba(0,0,0,0.1);
  margin-bottom: 15px !important;
  line-height: 1.2 !important;
}

.desktop-recommended-items {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.desktop-recommended-item {
  display: flex;
  align-items: flex-start;
  transition: transform 0.2s ease;
  width: calc(50% - 15px);
}

.desktop-recommended-item:hover {
  transform: translateX(3px);
}

.desktop-article-image {
  width: 120px;
  height: 80px;
  overflow: hidden;
  position: relative;
  margin-right: 15px;
  flex-shrink: 0;
}

.desktop-article-image img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
  display: block;
  object-fit: cover;
}

.desktop-recommended-item:hover .desktop-article-image img {
  transform: scale(1.05);
}

.desktop-article-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.desktop-article-category {
  font-family: 'Founders Grotesk Condensed', sans-serif !important;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  color: #268d83;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}

.desktop-article-category:hover {
  color: #1a6158;
  text-decoration: none;
  background-color: rgba(38, 141, 131, 0.1);
  padding: 2px 4px;
  margin: -2px 0 4px -4px;
  border-radius: 2px;
}

.desktop-recommended-article-title {
  font-family: 'Founders Grotesk Condensed', sans-serif !important;
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
  color: #000;
  display: block;
  text-decoration: none;
  transition: color 0.2s ease;
}

.desktop-recommended-article-title:hover {
  color: #268d83;
  text-decoration: none;
}

/* Reszponzív viselkedés */
@media (max-width: 991px) {
  .desktop-recommended-articles {
    left: 0;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .desktop-recommended-items {
    flex-direction: column;
  }
  
  .desktop-recommended-item {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .desktop-recommended-item:last-child {
    margin-bottom: 0;
  }
}

/* Sötét téma a Related Stories szekcióhoz */
body.darkmode .desktop-recommended-articles {
  background: #1a1a1a;
  border-color: #444;
  border-left-color: #58ceb6;
}

body.darkmode .desktop-recommended-articles .desktop-section-title h3 {
  color: #fff;
  border-bottom: 2px solid rgba(255,255,255,0.1);
}

body.darkmode .desktop-article-category {
  color: #58ceb6;
}

body.darkmode .desktop-article-category:hover {
  color: #7edecb;
  background-color: rgba(88, 206, 182, 0.1);
}

body.darkmode .desktop-recommended-article-title {
  color: #fff;
}

body.darkmode .desktop-recommended-article-title:hover {
  color: #58ceb6;
} 