/* 
CS Gaming Hub - Main Stylesheet
Theme: CS2 Skins and Trading
*/

/* ==============
   Base Styles
   ============== */

:root {
  --primary-color: #4a69bd;
  --primary-dark: #3c54a3;
  --primary-light: #6a89cc;
  --secondary-color: #ff9f43;
  --secondary-dark: #e08e3c;
  --accent-color: #26de81;
  --dark-color: #2c3e50;
  --light-color: #f5f6fa;
  --gray-color: #a4b0be;
  --danger-color: #eb4d4b;
  --text-color: #333333;
  --text-light: #7f8fa6;
  --border-color: #dcdde1;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 6px;
  --header-height: 80px;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
}

h1 {
  font-size: 4.2rem;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2rem;
}

p {
  margin-bottom: 1.6rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul, ol {
  list-style-position: inside;
  margin-bottom: 1.6rem;
  padding-left: 2rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  padding-bottom: 1.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

/* ==============
   Buttons
   ============== */

.btn {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1.6rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: white;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  color: white;
}

.btn-tertiary {
  background-color: transparent;
  color: var(--text-color);
  border: 1px solid var(--border-color);
}

.btn-tertiary:hover {
  background-color: var(--light-color);
  color: var(--dark-color);
  border-color: var(--gray-color);
}

/* ==============
   Header and Navigation
   ============== */

header {
  background-color: white;
  box-shadow: var(--box-shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  max-height: 50px;
  width: auto;
}

nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

nav ul li {
  margin-left: 2.5rem;
}

nav ul li a {
  color: var(--dark-color);
  font-weight: 600;
  font-size: 1.6rem;
  padding: 1rem 0;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

nav ul li a.active {
  color: var(--primary-color);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--dark-color);
  border-radius: 3px;
  transition: var(--transition);
}

/* ==============
   Hero Section
   ============== */

.hero {
  height: 80vh;
  min-height: 600px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('images/1.jpg') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  padding-top: var(--header-height);
}

.hero h1 {
  font-size: 5.2rem;
  margin-bottom: 2rem;
  color: white;
}

.hero p {
  font-size: 2rem;
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* ==============
   Featured Posts
   ============== */

.featured-posts {
  padding: 8rem 0;
  background-color: white;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 3rem;
}

.post-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.post-image {
  height: 240px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.post-card:hover .post-image img {
  transform: scale(1.05);
}

.post-content {
  padding: 2rem;
}

.post-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.post-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.read-more {
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
}

.read-more::after {
  content: '→';
  margin-left: 0.5rem;
  transition: var(--transition);
}

.read-more:hover::after {
  transform: translateX(3px);
}

.view-all {
  text-align: center;
  margin-top: 4rem;
}

/* ==============
   Newsletter Section
   ============== */

.newsletter {
  padding: 8rem 0;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/3.jpg') no-repeat center center;
  background-size: cover;
  color: white;
}

.newsletter h2 {
  color: white;
}

.newsletter p {
  max-width: 600px;
  margin: 0 auto 3rem;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 1.2rem 1.5rem;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1.6rem;
}

.newsletter-form button {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* ==============
   Services Section
   ============== */

.services {
  padding: 8rem 0;
  background-color: var(--light-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 3rem;
}

.service-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-icon {
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.service-icon svg {
  width: 50px;
  height: 50px;
}

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-light);
}

/* ==============
   Fun Facts Section
   ============== */

.fun-facts {
  padding: 8rem 0;
  background-color: white;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 3rem;
}

.fact-card {
  text-align: center;
  padding: 2rem;
  border-radius: var(--border-radius);
  background-color: var(--light-color);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.fact-card:hover {
  transform: translateY(-5px);
}

.fact-number {
  font-size: 4.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1;
}

.fact-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* ==============
   Page Header
   ============== */

.page-header {
  height: 300px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('images/2.jpg') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  padding-top: var(--header-height);
}

.page-header h1 {
  color: white;
  margin-bottom: 1rem;
}

/* ==============
   Blog Page Styles
   ============== */

.blog-content {
  padding: 8rem 0;
  background-color: white;
}

.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.blog-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.blog-image {
  height: 100%;
  min-height: 250px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-details {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.blog-date {
  color: var(--text-light);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.blog-details h2 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

.blog-details p {
  color: var(--text-light);
  margin-bottom: 2rem;
  flex-grow: 1;
}

/* ==============
   Blog Post Styles
   ============== */

.blog-post-content {
  padding: 12rem 0 8rem;
  background-color: white;
}

.blog-post {
  max-width: 800px;
  margin: 0 auto;
}

.post-header {
  margin-bottom: 3rem;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  color: var(--text-light);
  font-size: 1.4rem;
  margin-top: 1rem;
}

.post-featured-image {
  margin-bottom: 3rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.post-featured-image img {
  width: 100%;
}

.post-intro {
  font-size: 1.8rem;
  color: var(--dark-color);
  border-left: 4px solid var(--primary-color);
  padding-left: 2rem;
  margin-bottom: 3rem;
}

.post-content h2 {
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.post-content h3 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.post-content p, .post-content ul, .post-content ol {
  margin-bottom: 2rem;
}

.post-content ul li, .post-content ol li {
  margin-bottom: 1rem;
}

.post-tags {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.post-tags span {
  font-weight: 600;
  margin-right: 1rem;
}

.post-tags a {
  display: inline-block;
  background-color: var(--light-color);
  color: var(--text-light);
  padding: 0.5rem 1.2rem;
  border-radius: 3rem;
  margin-right: 1rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  transition: var(--transition);
}

.post-tags a:hover {
  background-color: var(--primary-light);
  color: white;
}

.post-share {
  margin-top: 3rem;
  display: flex;
  align-items: center;
}

.post-share span {
  font-weight: 600;
  margin-right: 1.5rem;
}

.social-share {
  display: flex;
  gap: 1rem;
}

.social-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--light-color);
  color: var(--dark-color);
  transition: var(--transition);
}

.social-share a:hover {
  background-color: var(--primary-color);
  color: white;
}

.related-posts {
  margin-top: 6rem;
  padding-top: 4rem;
  border-top: 1px solid var(--border-color);
}

.related-posts h3 {
  text-align: center;
  margin-bottom: 3rem;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.related-post {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.related-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.related-post img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.related-post h4 {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.6rem;
}

.related-post a {
  display: block;
  padding: 0 1.5rem 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

/* ==============
   About Page Styles
   ============== */

.about-story {
  padding: 8rem 0;
  background-color: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 5rem;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 2.5rem;
}

.about-text p {
  margin-bottom: 2rem;
}

.about-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.team-section {
  padding: 8rem 0;
  background-color: var(--light-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 3rem;
}

.team-member {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.team-member img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-member h3 {
  margin: 2rem 0 0.5rem;
}

.team-member p {
  color: var(--text-light);
  padding: 0 2rem;
  margin-bottom: 1rem;
}

.team-member p:nth-of-type(1) {
  color: var(--primary-color);
  font-weight: 600;
}

.team-member .social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 0 0 2rem;
}

.team-member .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--light-color);
  color: var(--dark-color);
  transition: var(--transition);
}

.team-member .social-icons a:hover {
  background-color: var(--primary-color);
  color: white;
}

.values-section {
  padding: 8rem 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/4.jpg') no-repeat center center;
  background-size: cover;
  color: white;
}

.values-section .section-title {
  color: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 3rem;
}

.value-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.2);
}

.value-icon {
  margin-bottom: 2rem;
  color: var(--secondary-color);
}

.value-icon svg {
  width: 50px;
  height: 50px;
}

.value-card h3 {
  color: white;
  margin-bottom: 1.5rem;
}

.value-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* ==============
   Contact Page Styles
   ============== */

.contact-section {
  padding: 8rem 0;
  background-color: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-info h2, .contact-form-container h2 {
  margin-bottom: 3rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: white;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.info-icon svg {
  width: 24px;
  height: 24px;
}

.info-text h3 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.info-text p {
  color: var(--text-light);
  margin-bottom: 0;
}

.social-media {
  margin-top: 4rem;
}

.social-media h3 {
  margin-bottom: 1.5rem;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
}

.contact-form {
  background-color: var(--light-color);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1.6rem;
  font-family: var(--font-main);
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.contact-form button {
  width: 100%;
}

.map-section {
  height: 450px;
}

.map-container {
  height: 100%;
}

.map-container iframe {
  border: 0;
}

/* ==============
   Footer Styles
   ============== */

footer {
  background-color: var(--dark-color);
  color: white;
  padding: 6rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 1.5rem;
}

.footer-logo p {
  color: var(--gray-color);
}

.footer-links h3, .footer-contact h3 {
  color: white;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 1rem;
}

.footer-links ul li a {
  color: var(--gray-color);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact p {
  color: var(--gray-color);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.footer-contact p i {
  margin-right: 1rem;
  color: var(--primary-light);
}

.footer-contact .social-icons {
  margin-top: 2rem;
}

.footer-contact .social-icons a {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.footer-contact .social-icons a:hover {
  background-color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--gray-color);
  margin-bottom: 0;
  font-size: 1.4rem;
}

/* ==============
   Modal Styles
   ============== */

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: white;
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 90%;
  position: relative;
  padding: 3rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.close-modal {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.4rem;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--danger-color);
}

.thank-you-message {
  text-align: center;
}

.thank-you-message svg {
  color: var(--accent-color);
  margin-bottom: 2rem;
}

.thank-you-message h2 {
  margin-bottom: 1.5rem;
}

.thank-you-message p {
  margin-bottom: 2.5rem;
}

.close-btn {
  margin: 0 auto;
}

/* ==============
   Cookie Notice
   ============== */

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1500;
  padding: 2rem 0;
  display: none;
}

.cookie-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.cookie-content p {
  margin-bottom: 2rem;
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.cookie-more-info {
  font-size: 1.4rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* ==============
   Parallax Effect
   ============== */

.parallax-section {
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

/* ==============
   Responsive Styles
   ============== */

@media (max-width: 1200px) {
  html {
    font-size: 58%;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 56%;
  }
  
  .blog-card {
    grid-template-columns: 1fr;
  }
  
  .blog-image {
    height: 300px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 54%;
  }
  
  h1 {
    font-size: 3.8rem;
  }
  
  h2 {
    font-size: 2.8rem;
  }
  
  .hero {
    height: 60vh;
    min-height: 500px;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 0;
    overflow: hidden;
    transition: var(--transition);
    visibility: hidden;
  }
  
  nav.active {
    height: auto;
    visibility: visible;
    padding: 2rem 0;
  }
  
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  nav ul li {
    margin: 1rem 0;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
  }
  
  .newsletter-form button {
    border-radius: var(--border-radius);
    width: 100%;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 52%;
  }
  
  .posts-grid, .services-grid, .facts-grid, .team-grid, .values-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .post-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .post-share {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .post-share span {
    margin-bottom: 1rem;
  }
}
