﻿.playforge-blog-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}


.playforge-blog-hero-section {
  position: relative;
  width: 100%;
  padding: 70px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f9f1 0%, #f7fafc 100%);
}

.playforge-blog-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-blog-hero-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
}

.playforge-blog-hero-title i {
  color: var(--accent-color);
  font-size: 2.2rem;
}

.playforge-blog-hero-subtitle {
  max-width: 95%;
  margin-bottom: 20px;
  color: var(--secondary-text-color);
  font-size: 1.25rem;
  line-height: 1.6;
}

.playforge-blog-hero-text {
  max-width: 90%;
  margin-bottom: 15px;
  color: var(--secondary-text-color);
  font-size: 1.1rem;
  line-height: 1.5;
}

.playforge-blog-hero-text i,
.playforge-blog-hero-subtitle i {
  margin-right: 8px;
  color: var(--accent-color);
}

.playforge-blog-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

.playforge-blog-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 30px;
  padding: 8px 15px;
  color: var(--accent-color);
  font-weight: 500;
  font-size: 0.95rem;
  background: rgba(0, 129, 57, 0.1);
  transition: all 0.3s ease;
}

.playforge-blog-hero-tag:hover {
  background: rgba(0, 129, 57, 0.2);
  transform: translateY(-3px);
}

.playforge-blog-hero-tag i {
  color: var(--accent-color);
  font-size: 0.85rem;
}


.playforge-blog-featured-stories-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: #fff;
}

.playforge-blog-featured-stories-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-blog-featured-stories-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.playforge-blog-featured-stories-title i {
  color: #ff7d3e;
}

.playforge-blog-featured-stories-text {
  max-width: 800px;
  margin-bottom: 40px;
  color: var(--secondary-text-color);
  font-size: 1.15rem;
  line-height: 1.6;
  text-align: center;
}

.playforge-blog-featured-stories-text i {
  margin-right: 8px;
  color: #ff7d3e;
}

.playforge-blog-featured-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

.playforge-blog-featured-story {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background: white;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: max-content;
}

.playforge-blog-featured-story:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-12px);
}

.playforge-blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 20px;
  padding: 5px 12px;
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  background: rgba(255, 125, 62, 0.9);
  transition: all 0.3s ease;
}

.playforge-blog-category i {
  font-size: 0.8rem;
}

.playforge-blog-featured-story:hover .playforge-blog-category {
  background: #ff7d3e;
  transform: translateY(-3px);
}

.playforge-blog-featured-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.playforge-blog-featured-story:hover .playforge-blog-featured-img {
  transform: scale(1.05);
}

.playforge-blog-meta {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px 5px;
  color: var(--secondary-text-color);
  font-size: 0.9rem;
}

.playforge-blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.playforge-blog-meta i {
  color: #ff7d3e;
}

.playforge-blog-featured-story h3 {
  padding: 5px 20px 10px;
  color: var(--main-text-color);
  font-weight: 600;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.playforge-blog-featured-story:hover h3 {
  color: #ff7d3e;
}

.playforge-blog-short-text {
  padding: 0 20px 15px;
  color: var(--secondary-text-color);
  font-size: 1rem;
  line-height: 1.5;
}

.playforge-blog-full-text {
  display: none;
  padding: 0 20px 15px;
  color: var(--secondary-text-color);
  font-size: 1rem;
  line-height: 1.5;
}

.playforge-blog-full-text p {
  margin-bottom: 10px;
}

.playforge-blog-full-text ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 10px 0 15px;
}

.playforge-blog-full-text li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--main-text-color);
}

.playforge-blog-full-text li i {
  width: 18px;
  color: #ff7d3e;
  font-size: 0.9rem;
  text-align: center;
}

.playforge-blog-read-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: auto 20px 20px;
  border: none;
  border-radius: 10px;
  padding: 12px;
  color: #ff7d3e;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  background: rgba(255, 125, 62, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.playforge-blog-read-btn:hover {
  color: white;
  background: #ff7d3e;
  transform: translateY(-3px);
}


.playforge-blog-creative-tips-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #e8f5e9 100%);
}

.playforge-blog-creative-tips-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-blog-creative-tips-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.playforge-blog-creative-tips-title i {
  color: #e84393;
}

.playforge-blog-creative-tips-text {
  max-width: 800px;
  margin-bottom: 40px;
  color: var(--secondary-text-color);
  font-size: 1.15rem;
  line-height: 1.6;
  text-align: center;
}

.playforge-blog-creative-tips-text i {
  margin-right: 8px;
  color: #e84393;
}

.playforge-blog-creative-tips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  width: 100%;
}

.playforge-blog-creative-tip {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  background: white;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.playforge-blog-creative-tip:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.playforge-blog-creative-tip i {
  margin-bottom: 20px;
  color: #e84393;
  font-size: 2.5rem;
  transition: transform 0.3s ease;
}

.playforge-blog-creative-tip:hover i {
  transform: scale(1.2) rotate(5deg);
}

.playforge-blog-creative-tip h3 {
  margin-bottom: 10px;
  color: var(--main-text-color);
  font-weight: 600;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.playforge-blog-creative-tip:hover h3 {
  color: #e84393;
}

.playforge-blog-creative-tip p {
  margin-bottom: 15px;
  color: var(--secondary-text-color);
  font-size: 1rem;
}

.playforge-blog-creative-tip ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  text-align: left;
}

.playforge-blog-creative-tip li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--main-text-color);
  font-size: 0.95rem;
}

.playforge-blog-creative-tip li i {
  width: 18px;
  margin: 0;
  color: #e84393;
  font-size: 0.9rem;
  text-align: center;
}


.playforge-blog-regional-stories-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: #fff;
}

.playforge-blog-regional-stories-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-blog-regional-stories-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.playforge-blog-regional-stories-title i {
  color: #00cec9;
}

.playforge-blog-regional-stories-text {
  max-width: 800px;
  margin-bottom: 40px;
  color: var(--secondary-text-color);
  font-size: 1.15rem;
  line-height: 1.6;
  text-align: center;
}

.playforge-blog-regional-stories-text i {
  margin-right: 8px;
  color: #00cec9;
}

.playforge-blog-regional-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

.playforge-blog-regional-story {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background: white;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.playforge-blog-regional-story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  opacity: 0.7;
  background: #00cec9;
  transition: all 0.3s ease;
}

.playforge-blog-regional-story:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.playforge-blog-regional-story:hover::before {
  width: 10px;
  opacity: 1;
}

.playforge-blog-regional-story i {
  margin-bottom: 20px;
  color: #00cec9;
  font-size: 2.2rem;
  transition: transform 0.3s ease;
}

.playforge-blog-regional-story:hover i {
  transform: scale(1.2) rotate(5deg);
}

.playforge-blog-regional-story h3 {
  margin-bottom: 10px;
  color: var(--main-text-color);
  font-weight: 600;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.playforge-blog-regional-story:hover h3 {
  color: #00cec9;
}

.playforge-blog-regional-story p {
  margin-bottom: 15px;
  color: var(--secondary-text-color);
  font-size: 1rem;
}

.playforge-blog-regional-story ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.playforge-blog-regional-story li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--main-text-color);
  font-size: 0.95rem;
}

.playforge-blog-regional-story li i {
  width: 18px;
  margin: 0;
  color: #00cec9;
  font-size: 0.9rem;
  text-align: center;
}


.playforge-blog-creator-profiles-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f9f1 0%, #f7fafc 100%);
}

.playforge-blog-creator-profiles-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-blog-creator-profiles-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.playforge-blog-creator-profiles-title i {
  color: #4a6bdf;
}

.playforge-blog-creator-profiles-text {
  max-width: 800px;
  margin-bottom: 40px;
  color: var(--secondary-text-color);
  font-size: 1.15rem;
  line-height: 1.6;
  text-align: center;
}

.playforge-blog-creator-profiles-text i {
  margin-right: 8px;
  color: #4a6bdf;
}

.playforge-blog-creator-profiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

.playforge-blog-creator-profile {
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background: white;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.playforge-blog-creator-profile:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.playforge-blog-creator-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.playforge-blog-creator-profile:hover .playforge-blog-creator-img {
  transform: scale(1.05);
}

.playforge-blog-creator-profile h3 {
  padding: 20px 20px 10px;
  color: var(--main-text-color);
  font-weight: 600;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.playforge-blog-creator-profile:hover h3 {
  color: #4a6bdf;
}

.playforge-blog-creator-profile ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 20px 15px;
}

.playforge-blog-creator-profile li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary-text-color);
  font-size: 0.95rem;
}

.playforge-blog-creator-profile li i {
  width: 18px;
  color: #4a6bdf;
  font-size: 0.9rem;
  text-align: center;
}

.playforge-blog-creator-profile p {
  padding: 0 20px 20px;
  color: var(--main-text-color);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
}


.playforge-blog-community-chronicles-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: #fff;
}

.playforge-blog-community-chronicles-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-blog-community-chronicles-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.playforge-blog-community-chronicles-title i {
  color: #fdcb6e;
}

.playforge-blog-community-chronicles-text {
  max-width: 800px;
  margin-bottom: 40px;
  color: var(--secondary-text-color);
  font-size: 1.15rem;
  line-height: 1.6;
  text-align: center;
}

.playforge-blog-community-chronicles-text i {
  margin-right: 8px;
  color: #fdcb6e;
}

.playforge-blog-community-chronicles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

.playforge-blog-community-tale {
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background: white;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.playforge-blog-community-tale:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.playforge-blog-community-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.playforge-blog-community-tale:hover .playforge-blog-community-img {
  transform: scale(1.05);
}

.playforge-blog-community-tale h3 {
  padding: 20px 20px 10px;
  color: var(--main-text-color);
  font-weight: 600;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.playforge-blog-community-tale:hover h3 {
  color: #fdcb6e;
}

.playforge-blog-community-tale p {
  padding: 0 20px 15px;
  color: var(--secondary-text-color);
  font-size: 1rem;
  line-height: 1.5;
}

.playforge-blog-community-stats {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px 20px;
}

.playforge-blog-community-stats span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--main-text-color);
  font-weight: 500;
  font-size: 0.95rem;
}

.playforge-blog-community-stats i {
  color: #fdcb6e;
  font-size: 0.9rem;
}


.playforge-blog-expert-voices-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #e8f5e9 100%);
}

.playforge-blog-expert-voices-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-blog-expert-voices-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.playforge-blog-expert-voices-title i {
  color: var(--accent-color);
}

.playforge-blog-expert-voices-text {
  max-width: 800px;
  margin-bottom: 40px;
  color: var(--secondary-text-color);
  font-size: 1.15rem;
  line-height: 1.6;
  text-align: center;
}

.playforge-blog-expert-voices-text i {
  margin-right: 8px;
  color: var(--accent-color);
}

.playforge-blog-expert-voices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
}

.playforge-blog-expert-voice {
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background: white;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: max-content;
}

.playforge-blog-expert-voice:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.playforge-blog-expert-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.playforge-blog-expert-voice:hover .playforge-blog-expert-img {
  transform: scale(1.05);
}

.playforge-blog-expert-content {
  padding: 20px;
}

.playforge-blog-expert-voice h3 {
  margin-bottom: 5px;
  color: var(--main-text-color);
  font-weight: 600;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.playforge-blog-expert-voice:hover h3 {
  color: var(--accent-color);
}

.playforge-blog-expert-role {
  margin-bottom: 15px;
  color: var(--secondary-text-color);
  font-size: 0.95rem;
}

.playforge-blog-expert-quote {
  position: relative;
  margin-bottom: 15px;
  border-radius: 10px;
  padding: 15px;
  color: var(--main-text-color);
  font-style: italic;
  background: rgba(0, 129, 57, 0.05);
}

.playforge-blog-expert-quote i:first-child {
  margin-right: 5px;
  opacity: 0.5;
  color: var(--accent-color);
}

.playforge-blog-expert-quote i:last-child {
  margin-left: 5px;
  opacity: 0.5;
  color: var(--accent-color);
}

.playforge-blog-expert-full {
  display: none;
  margin-top: 15px;
}

.playforge-blog-expert-full p {
  margin-bottom: 10px;
  color: var(--secondary-text-color);
  font-size: 0.95rem;
  line-height: 1.5;
}

.playforge-blog-expert-full p strong {
  color: var(--main-text-color);
  font-weight: 600;
}

.playforge-blog-expert-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  border: none;
  border-radius: 10px;
  padding: 10px 15px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.95rem;
  background: rgba(0, 129, 57, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.playforge-blog-expert-btn:hover {
  color: white;
  background: var(--accent-color);
  transform: translateY(-3px);
}


.playforge-blog-beginner-guide-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: #fff;
}

.playforge-blog-beginner-guide-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-blog-beginner-guide-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.playforge-blog-beginner-guide-title i {
  color: #6c5ce7;
}

.playforge-blog-beginner-guide-text {
  max-width: 800px;
  margin-bottom: 40px;
  color: var(--secondary-text-color);
  font-size: 1.15rem;
  line-height: 1.6;
  text-align: center;
}

.playforge-blog-beginner-guide-text i {
  margin-right: 8px;
  color: #6c5ce7;
}

.playforge-blog-beginner-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

.playforge-blog-beginner-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 15px;
  border-top: 4px solid #6c5ce7;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  background: white;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.playforge-blog-beginner-item:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.playforge-blog-beginner-item i {
  margin-bottom: 20px;
  color: #6c5ce7;
  font-size: 2.2rem;
  transition: transform 0.3s ease;
}

.playforge-blog-beginner-item:hover i {
  transform: scale(1.2) rotate(5deg);
}

.playforge-blog-beginner-item h3 {
  margin-bottom: 10px;
  color: var(--main-text-color);
  font-weight: 600;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.playforge-blog-beginner-item:hover h3 {
  color: #6c5ce7;
}

.playforge-blog-beginner-item p {
  margin-bottom: 15px;
  color: var(--secondary-text-color);
  font-size: 1rem;
}

.playforge-blog-beginner-item ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.playforge-blog-beginner-item li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--main-text-color);
  font-size: 0.95rem;
}

.playforge-blog-beginner-item li i {
  width: 18px;
  margin: 0;
  color: #6c5ce7;
  font-size: 0.9rem;
  text-align: center;
}


.playforge-blog-festive-challenges-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f9f1 0%, #f7fafc 100%);
}

.playforge-blog-festive-challenges-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-blog-festive-challenges-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.playforge-blog-festive-challenges-title i {
  color: #ff6b6b;
}

.playforge-blog-festive-challenges-text {
  max-width: 800px;
  margin-bottom: 40px;
  color: var(--secondary-text-color);
  font-size: 1.15rem;
  line-height: 1.6;
  text-align: center;
}

.playforge-blog-festive-challenges-text i {
  margin-right: 8px;
  color: #ff6b6b;
}

.playforge-blog-festive-challenges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
}

.playforge-blog-festive-challenge {
  position: relative;
  display: flex;
  flex-direction: column;
  height: max-content;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background: white;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.playforge-blog-festive-challenge:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.playforge-blog-festive-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.playforge-blog-festive-challenge:hover .playforge-blog-festive-img {
  transform: scale(1.05);
}

.playforge-blog-festive-challenge h3 {
  padding: 20px 20px 10px;
  color: var(--main-text-color);
  font-weight: 600;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.playforge-blog-festive-challenge:hover h3 {
  color: #ff6b6b;
}

.playforge-blog-festive-challenge p {
  padding: 0 20px 15px;
  color: var(--secondary-text-color);
  font-size: 1rem;
  line-height: 1.5;
}

.playforge-blog-festive-full {
  display: none;
  padding: 0 20px 15px;
}

.playforge-blog-festive-full p {
  margin-bottom: 10px;
  color: var(--secondary-text-color);
  font-size: 1rem;
  line-height: 1.5;
}

.playforge-blog-festive-full ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 10px 0 15px;
}

.playforge-blog-festive-full li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--main-text-color);
  font-size: 0.95rem;
}

.playforge-blog-festive-full li i {
  width: 18px;
  color: #ff6b6b;
  font-size: 0.9rem;
  text-align: center;
}

.playforge-blog-festive-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: auto 20px 20px;
  border: none;
  border-radius: 10px;
  padding: 12px;
  color: #ff6b6b;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  background: rgba(255, 107, 107, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.playforge-blog-festive-btn:hover {
  color: white;
  background: #ff6b6b;
  transform: translateY(-3px);
}


.playforge-blog-connect-community-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: #fff;
}

.playforge-blog-connect-community-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-blog-connect-community-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.playforge-blog-connect-community-title i {
  color: #ffa502;
}

.playforge-blog-connect-community-text {
  max-width: 800px;
  margin-bottom: 40px;
  color: var(--secondary-text-color);
  font-size: 1.15rem;
  line-height: 1.6;
  text-align: center;
}

.playforge-blog-connect-community-text i {
  margin-right: 8px;
  color: #ffa502;
}

.playforge-blog-connect-community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

.playforge-blog-connect-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  background: white;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.playforge-blog-connect-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffa502, transparent);
  transition: transform 0.6s ease;
  transform: translateX(-100%);
}

.playforge-blog-connect-item:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.playforge-blog-connect-item:hover::after {
  transform: translateX(0);
}

.playforge-blog-connect-item i {
  margin-bottom: 20px;
  color: #ffa502;
  font-size: 2.5rem;
  transition: transform 0.3s ease;
}

.playforge-blog-connect-item:hover i {
  transform: scale(1.2) rotate(5deg);
}

.playforge-blog-connect-item h3 {
  margin-bottom: 10px;
  color: var(--main-text-color);
  font-weight: 600;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.playforge-blog-connect-item:hover h3 {
  color: #ffa502;
}

.playforge-blog-connect-item p {
  margin-bottom: 15px;
  color: var(--secondary-text-color);
  font-size: 1rem;
}

.playforge-blog-connect-item ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  text-align: left;
}

.playforge-blog-connect-item li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--main-text-color);
  font-size: 0.95rem;
}

.playforge-blog-connect-item li i {
  width: 18px;
  margin: 0;
  color: #ffa502;
  font-size: 0.9rem;
  text-align: center;
}


.playforge-blog-join-community-section {
  position: relative;
  width: 100%;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f9f1 0%, #f7fafc 100%);
}

.playforge-blog-join-community-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-blog-join-community-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.6rem;
  text-align: center;
}

.playforge-blog-join-community-title i {
  color: var(--accent-color);
  font-size: 2.2rem;
}

.playforge-blog-join-community-text {
  max-width: 900px;
  margin-bottom: 30px;
  color: var(--secondary-text-color);
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
}

.playforge-blog-join-community-text i {
  margin-right: 8px;
  color: var(--accent-color);
}

.playforge-blog-join-community-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.playforge-blog-join-community-list li {
  position: relative;
  padding-left: 35px;
  color: var(--main-text-color);
  font-size: 1.05rem;
  line-height: 1.5;
}

.playforge-blog-join-community-list li i {
  position: absolute;
  top: 3px;
  left: 0;
  color: var(--accent-color);
  font-size: 1.2rem;
}

.playforge-blog-join-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  padding: 16px 35px;
  box-shadow: 0 8px 25px rgba(0, 129, 57, 0.3);
  color: white;
  font-weight: 600;
  font-size: 1.15rem;
  text-decoration: none;
  background: var(--accent-color);
  transition: all 0.3s ease;
}

.playforge-blog-join-btn:hover {
  box-shadow: 0 12px 30px rgba(0, 129, 57, 0.4);
  background: #00964a;
  transform: translateY(-5px);
}


@media (max-width: 1024px) {

  .playforge-blog-featured-stories-grid,
  .playforge-blog-creative-tips-grid,
  .playforge-blog-regional-stories-grid,
  .playforge-blog-creator-profiles-grid,
  .playforge-blog-community-chronicles-grid,
  .playforge-blog-beginner-guide-grid,
  .playforge-blog-connect-community-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .playforge-blog-hero-title {
    font-size: 2.2rem;
  }

  .playforge-blog-hero-subtitle {
    font-size: 1.15rem;
  }

  .playforge-blog-join-community-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .playforge-blog-hero-section {
    padding: 60px 0;
  }

  .playforge-blog-hero-title {
    font-size: 2rem;
  }

  .playforge-blog-hero-subtitle {
    max-width: 100%;
    font-size: 1.1rem;
  }

  .playforge-blog-hero-text {
    max-width: 100%;
    font-size: 1rem;
  }

  .playforge-blog-featured-stories-title,
  .playforge-blog-creative-tips-title,
  .playforge-blog-regional-stories-title,
  .playforge-blog-creator-profiles-title,
  .playforge-blog-community-chronicles-title,
  .playforge-blog-expert-voices-title,
  .playforge-blog-beginner-guide-title,
  .playforge-blog-festive-challenges-title,
  .playforge-blog-connect-community-title,
  .playforge-blog-join-community-title {
    font-size: 2rem;
  }

  .playforge-blog-expert-voices-grid,
  .playforge-blog-festive-challenges-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {

  .playforge-blog-featured-stories-grid,
  .playforge-blog-creative-tips-grid,
  .playforge-blog-regional-stories-grid,
  .playforge-blog-creator-profiles-grid,
  .playforge-blog-community-chronicles-grid,
  .playforge-blog-beginner-guide-grid,
  .playforge-blog-connect-community-grid {
    grid-template-columns: 1fr;
  }

  .playforge-blog-hero-tags {
    justify-content: center;
  }

  .playforge-blog-creative-tip,
  .playforge-blog-regional-story,
  .playforge-blog-beginner-item,
  .playforge-blog-connect-item {
    align-items: center;
    text-align: center;
  }

  .playforge-blog-creative-tip ul,
  .playforge-blog-regional-story ul,
  .playforge-blog-beginner-item ul,
  .playforge-blog-connect-item ul {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .playforge-blog-hero-section {
    padding: 50px 0;
  }

  .playforge-blog-hero-title {
    font-size: 1.8rem;
  }

  .playforge-blog-featured-stories-section,
  .playforge-blog-creative-tips-section,
  .playforge-blog-regional-stories-section,
  .playforge-blog-creator-profiles-section,
  .playforge-blog-community-chronicles-section,
  .playforge-blog-expert-voices-section,
  .playforge-blog-beginner-guide-section,
  .playforge-blog-festive-challenges-section,
  .playforge-blog-connect-community-section,
  .playforge-blog-join-community-section {
    padding: 50px 0;
  }

  .playforge-blog-featured-stories-title,
  .playforge-blog-creative-tips-title,
  .playforge-blog-regional-stories-title,
  .playforge-blog-creator-profiles-title,
  .playforge-blog-community-chronicles-title,
  .playforge-blog-expert-voices-title,
  .playforge-blog-beginner-guide-title,
  .playforge-blog-festive-challenges-title,
  .playforge-blog-connect-community-title,
  .playforge-blog-join-community-title {
    font-size: 1.8rem;
  }

  .playforge-blog-featured-stories-text,
  .playforge-blog-creative-tips-text,
  .playforge-blog-regional-stories-text,
  .playforge-blog-creator-profiles-text,
  .playforge-blog-community-chronicles-text,
  .playforge-blog-expert-voices-text,
  .playforge-blog-beginner-guide-text,
  .playforge-blog-festive-challenges-text,
  .playforge-blog-connect-community-text,
  .playforge-blog-join-community-text {
    font-size: 1rem;
  }

  .playforge-blog-join-btn {
    justify-content: center;
    width: 100%;
    padding: 14px;
    font-size: 1.05rem;
  }

  .playforge-blog-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .playforge-blog-community-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}

@media (max-width: 425px) {
  [class*="-title"] {
    flex-direction: column;
    text-align: center;
  }
}