:root {
    --night: #212529;
    --azure-web: #ecfbf7;
    --cambridge-blue: #72a38e;
    --white: #ffffff;
    --header-bg: rgba(19, 21, 21, 0.6);
}

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

body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400; 
    line-height: 1.6;
    color: var(--night);
background: linear-gradient(135deg, #fff, #ecfbf7);
	    margin: 0;
    padding: 0;
	font-size:16px;
 -webkit-text-size-adjust: 100%;	
}

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

/* Fixed Header */
header {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
	background:transparent;
}

.header-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
   /* padding: 7px 14px 7px 7px;*/
    position: relative;
	padding: 7px;
 background: linear-gradient(135deg, rgba(19, 21, 21, 0.8), rgba(34, 34, 34, 0.8));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
	border-radius:50px;	
 box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.club-logo-link {
  display: flex;
  align-items: center; /* Vertically center */
  text-decoration: none; /* Remove underline from link */
  color: inherit; /* Keep text color */
}

/* Style the logo container */
.club-logo {
  position: relative;
  height: 60px;
  width: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* ensure shadow is contained */
}

/* Style the image inside logo */
.club-logo img {
  height: 100%;
  width: 100%;
  min-width: 60px;
  min-height: 60px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.club-logo::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.5);
  pointer-events: none; /* allow clicks to pass through */
}

/* Style the text next to logo */
.logo-text {
  margin-left: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 135px;
  color: #fff;
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-size: 1.2rem;
  text-align: center;
  gap: 0px; /* << replaces line-height hack */
}

.logo-text .line2 {
  font-size: 1rem;
}



/* Navigation */
.main-nav ul {
    display: flex;
    list-style: none;

}

.main-nav li {
    margin-left: 0;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
padding:0 8px;
		text-transform:uppercase;
		font-size:0.82rem;
letter-spacing:-0.5px;
  background-position: top right;
  background-repeat: no-repeat;
  background-image: linear-gradient(transparent 50%, #72a38e 50%);
  background-size: 0% 100%;
  text-decoration: none;
  transition: background-size 300ms cubic-bezier(0.86, 0, 0.07, 1);
}

.main-nav a:hover {

	  background-position: top left;
  background-size: 100% 100%;
}

.main-nav a.active {
  background-position: top left;
  background-size: 100% 100%;
}

.main-nav a.branko {
  background: #fff;
  color: #212529;
  margin-left: 12px;
  letter-spacing: -0.5px;
  font-weight: 600;
  padding: 22px 15px;
  border-radius: 50px;
  text-transform: none;
  font-size: 0.92rem;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='8' viewBox='0 0 100 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,6 Q50,1 100,6' stroke='%23212529' fill='transparent' stroke-width='1.8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 50% 78%; /* slightly higher and aligned */
  background-size: 80% 12px;
}

.main-nav a.branko.active {
  /* Optional: additional active styles if needed */
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.6);
}



.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 999;
margin-right:20px;
}

.menu-toggle .bar {
  height: 4px;
  width: 100%;
  background-color: var(--white); /* or your desired color */
  border-radius: 2px;
  transition: 0.3s ease;
}

/* Transform when active (into an "X") */
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Fixed Memorial Logo */
.memorial-logo-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 90px;
    height: 90px;
    background-color:#fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.memorial-logo-fixed:hover {
    transform: scale(1.00);
}

.memorial-logo-fixed img {
    width: 100%;
    height: auto;
}


   /* Rare Tea Collection Section */
.slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
	cursor:default;
  }

   .scroll-container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* space between left arrows and right button */
  padding: 10px;
cursor:default;

}

   .scroll-container h2{

}

.scroll-container h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--cambridge-blue);
    margin: 15px 0;
}


/* Hero Section */

/* Container for the background image */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1; /* behind content */
}

/* Style the image to cover the container */
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Style for the hero section */
.hero {
  position: relative; /* To contain absolute children */
  padding: 200px 0 120px 0;
  text-align: center;
  color: var(--white);
  margin-bottom: 60px;
background:linear-gradient(rgba(19, 21, 21, 0.7), rgba(19, 21, 21, 0.7));
}

/* Ensure hero content is above background */
.hero-content {
  position: relative;
  z-index: 1;
}


.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
}

.hero h1 span{
text-shadow:0 0 3px #aaa;
}

.date-location {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Button Styles */
.cta-button {
text-decoration: none;
position: relative;
    color: #fff;
    cursor: pointer;
    outline: none;
    overflow: hidden;
  background: linear-gradient(135deg, #1d5c3c, #27ae60);
  cursor: pointer;
  display: flex;
   align-items: center;
      padding: 16px 30px;
        font-size: 0.92em;
       border-radius: 50px; 
       font-weight: 500;
 transition: all 0.6s ease;   
}
  
    .cta-button.primary svg {
            width: 24px;
            height: 24px;
        
                        align-self: center;
              transition: transform 0.6s ease; /* add transition for smooth animation */
        }



.cta-button:hover {
 
    color: var(--night);

	  background: linear-gradient(135deg, #27ae60, #1d5c3c);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.cta-button.secondary {
position: relative;
    color: #fff;
    cursor: pointer;
    outline: none;
    overflow: hidden;
        background: transparent;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;	
      padding: 12px 24px;
        font-size: 0.92em;
       border-radius: 50px; 
       font-weight: 500;
 transition: all 0.6s ease;  
}

.cta-button.secondary:hover {
box-shadow:none;
    color: var(--cambridge-blue);   
}

    .cta-button.secondary svg {
            width: 24px;
            height: 24px;
        
                        align-self: center;
              transition: transform 0.6s ease; /* add transition for smooth animation */
        }

/* Quick Info Section */
.quick-info {
    padding: 60px 0;
    background-color: red;
    margin-bottom: 60px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.info-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    background-color: var(--azure-web);
}

.info-card:hover {
    transform: translateY(-10px);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--cambridge-blue);
    margin-bottom: 15px;
}

.info-card h3 {
    margin-bottom: 10px;
    color: var(--night);
}


.luxury-info-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Original card styles */
.luxury-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
  padding: 40px 30px;
  flex: 1 1 300px;
  transition: box-shadow 0.3s;
  min-width: 280px;
  position: relative;
  overflow: hidden;
}

/* Card hover effect */
.luxury-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.sponsor-info-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Original card styles */
.sponsor-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
  padding:10px;
  flex: 1 1 180px;
max-width:170px;	
  transition: box-shadow 0.3s;
  position: relative;
  overflow: hidden;
display: flex; 
	justify-content: center; 
	align-items: center;	
}


/* Card hover effect */
.sponsor-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.sponsor-image-container {
    padding: 0;
    position: relative;
}

.sponsor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.4s ease;
}

/* Default styles (for larger screens) already in place */

/* Add media query for very small screens */
@media (max-width: 480px) {
  .sponsor-card {
    flex: 1 1 45%; /* allows two cards per row with some gap */
    max-width: 45%;
  }
}


/* Original button hover styles, remove or comment out if you prefer hover only via parent */
.card-edge-button {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d5c3c, #27ae60);
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}


/* Trigger button hover styles when parent is hovered */
.luxury-card:hover .card-edge-button {
  /* Apply the same hover styles as above */
  transform: translate(2px, -2px) scale(1.05);
  background: linear-gradient(135deg, #27ae60, #1d5c3c);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.sidebar-regulation:hover .card-edge-button {
  /* Apply the same hover styles as above */
  transform: translate(2px, -2px) scale(1.05);
  background: linear-gradient(135deg, #27ae60, #1d5c3c);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}



/* Highlighted card style */
.highlighted {
    padding: 60px 0;
    margin-bottom: 60px;
	background:#fff;
}

.highlight {
  background: linear-gradient(135deg, #0b3d2e 0%, #145a32 100%);
  color: #fff;
  box-shadow: 0 16px 32px rgba(0,0,0,0.2);
}

.section-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 400;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 3px;
  background: #27ae60;
  border-radius: 2px;
}


.highlight .section-title {
  color: #fff;
}

.deadline-date {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: inherit;
}

.note {
  font-size: 0.95em;
  opacity: 0.8;
  margin-top: 8px;
  line-height: 1.4;
}

.cost-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.cost-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.cost-item:hover {
  border-left-color: #6a11cb;
  background-color: rgba(0,0,0,0.02);
  padding-left: 12px;
}

.age-group {
  font-weight: 600;
  font-size: 1.1em;
}

.amount {
  font-size: 1.3em;
  font-weight: 700;
  color: #2c3e50;
}

.format-list {
  list-style: none;
  margin-top: 20px;
  padding-left: 0;
}

.format-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 1em;
}

.format-list li strong {
  color: #34495e;
}






/* About Tournament Section */
.about-tournament {
    padding: 60px 0;
    margin-bottom: 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--night);
    margin-bottom: 10px;
    position: relative;
	font-weight:600;
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;	
letter-spacing:-1px;
}

.section-header h2::after {
    content: '';
    display: block;
  width: 200px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 20'%3E%3Cpath fill='%23145a32' fill-rule='evenodd' d='M190.75,16.22C194,14,199,14,196.5,12.3,202,9,200,9,195.51,7a22.91,22.91,0,0,0,3.5-.75c-.72-.48-.1-1.56-.63-2.15C192,4,200,3,197.24,3.08c-.46,0-1.23-.06-1.69-.08-1.64-.08-3.28-.22-4.92-.33-3.16-.2-6.32-.4-9.47-.58q-9.48-.52-19-.94-19-.79-37.94-1Q112.48,0,100.72,0c-24.66.13-49.34.62-74,1.89q-7.5.39-15,.87C9.59,2.92-.64,2.16,0,5.63c.14.7,8.66,0,9.12.39C9,6.18,1.07,7.62.9,7.78a2,2,0,0,0,.74.1c1,0,1.93-.14,2.88-.06h.05c0,.17-2.06.36-2.05.58.48.59,1,1.13,1,1.14s-2.25-.13-2.25-.12c-.12.83,2.38,1.54,2.78,2.29s-1.39,1.33-1.66,2.13c.15.15,5.44.15,5.75.13,0,.6-5.11,1.63-5.5,2.15.15.32,2.5.42,2.5.89-.32.84-3.11.46-3.24,1.51.43.15.89.27.74,1,2.11,1,6.14,0,8.39-.14q4.74-.29,9.48-.54,9.48-.5,19-.89,19-.78,38-1.08,38-.62,76,.68c7.88.27,16,.65,24,1.06,4.19.21,8.37.44,12.55.66,2.33.13,6.9,1.83,7.45-1.44a13.24,13.24,0,0,0,2.62-.25C199.79,16.89,191.31,16.73,190.75,16.22Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
margin:0 auto 0 auto;	
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.read-more {
    display: inline-block;
    margin-top: 20px;
    color: var(--cambridge-blue);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--night);
}

.about-image {
  position: relative;
  flex: 1 1 300px;
  aspect-ratio: 1 / 1;
  max-width: 510px;
  width: 100%;
  border-radius: 16px;
  overflow: visible; /* IMPORTANT */
}

.blob {
  width: 60vw;
  max-width: 460px;
  height: 60vw;
  max-height: 460px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background-color: rgb(0, 21, 43);
  background-image: url('../ly.webp');
  background-size: cover;
  background-repeat: no-repeat;
  animation: blob 55s linear infinite;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  z-index: -1;
}

@keyframes blob {
  0%   { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  25%  { border-radius: 70% 30% 32% 68% / 30% 30% 70% 70%; }
  50%  { border-radius: 50% 50% 32% 68% / 55% 24% 76% 45%; }
  75%  { border-radius: 28% 72% 57% 43% / 79% 24% 76% 21%; }
  100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

/* Responsive tweaks */
@media (max-width: 768px) {
	.section-header h2 {
line-height:1.1;
	}

	.section-header h2::after {

margin:15px auto 15px auto;	
}
	
	
  .about-content {
    flex-direction: column;
    align-items: center;
  }

  .about-image {
    width: 100%;
    max-width: 360px;
    margin-top: 30px;
  }

  .blob {
    width: 80vw;
    height: 80vw;
    max-width: 360px;
    max-height: 360px;
    top: 50%;
    opacity: 0.9;
  }
}


/* News Section */
.news {
    padding: 60px 0;
    background-color: var(--white);
    margin-bottom: 60px;
}

.news-transparent {
    padding: 60px 0;
    margin-bottom: 60px;
}

.news-grid {
  display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
  padding: 40px 30px;
  transition: box-shadow 0.3s;
  position: relative;
  overflow: hidden;
    display: flex;
    flex-direction: column;
    flex-grow: 1;	
}

.news-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.news-card-link {
  text-decoration: none;
  color: inherit;
  display: block; /* Important: allows it to behave like a block in grid */
    display: flex;
    flex-direction: column;
    width: 100%;	
}



.news-date {
    font-size: 0.9rem;
    color: var(--cambridge-blue);
    margin-bottom: 15px;
}

.news-card h3 {
    margin-bottom: 15px;
    color: var(--night);
	font-weight:600;
    flex-shrink: 0;
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 15px;
    color: var(--night);
    font-weight: 600;

    /* Truncate to 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;	
}

.news-card p {
    flex-grow: 1;
    color: #444;
	font-size:0.92rem;

    /* Truncate to 3 lines */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;	
}




/* galleryy Section */
.galleryy {
    padding: 60px 0;
    margin-bottom: 60px;
}

.galleryy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.galleryy-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
  padding: 10px;
  transition: box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.galleryy-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.galleryy-card-link {
  text-decoration: none;
  color: inherit;
  display: block; /* Important: allows it to behave like a block in grid */
}

.galleryy-image-container {
    padding: 0;
    position: relative;
        aspect-ratio: 3 / 2;
}

.galleryy-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.4s ease;
}

.galleryy-card:hover .project-image {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.galleryy-date {
    font-size: 0.9rem;
    color: var(--cambridge-blue);
    margin-bottom: 15px;
}

.galleryy-card h3 {
    margin-bottom: 0;
    margin-top: 15px;	
    color: var(--night);
	font-weight:600;
}

.galleryy-card p {
    margin-bottom: 20px;
   margin-top: 0px;	
}







/* CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(rgba(19, 21, 21, 0.8), rgba(19, 21, 21, 0.8)), 
                url('../stadium.webp') center/cover no-repeat;
    color: var(--white);
    margin-bottom: 60px;
}

.cta-section h2 {
color:fff;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


/* Responsive Styles */
@media (max-width: 1024px) {
    .header-container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
	
    .galleryy-grid {
        grid-template-columns: repeat(2, 1fr);
    }	
    
    .about-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 0;
    }
   .menu-toggle {
    display: flex;
  }   
    .main-nav {
    position: absolute;
    top: 110%;
    left: 10%;
    width: 80%;
    background-color: rgba(19, 21, 21, 0.9); /* semi-transparent */
    padding: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
z-index:1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease;
    }
    
    .main-nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav li {
        margin: 0 0 10px 0;
    }
	
.main-nav a.branko {
  margin-left: 0;
  padding: 15px 15px;
}
	.main-nav li:last-child {
    margin-top: 10px;
}        
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .date-location {
        font-size: 1.1rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
	
	    .galleryy-grid {
        grid-template-columns: 1fr;
    }
	
        
    .memorial-logo-fixed {
        width: 70px;
        height: 70px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-buttons, .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-button, .cta-button.secondary {
        width: 100%;
        text-align: center;
    }
}






/* Main Container */
.container-regulation {
  display: flex;
  max-width: 1200px; /* Set max width of the container */
  margin: 0 auto;
  padding: 20px;  
  gap: 50px;
  position: relative;
}

.container-regulation h3 {
  margin: 0 0 20px 0;
  font-weight: 400;
  color: #fff;
  position: relative;
  padding: 0;
}

.container-regulation h3 .text-bg {
  display: inline-block;
  background: linear-gradient(135deg, #0b3d2e 0%, #145a32 100%);
  padding: 5px 20px 5px 5px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
font-size:0.96rem;
}

.container-regulation h3 .icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  color: #212529;
  background: white;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.5);
      font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
    font-weight: 900;
font-size:1.2rem;	
}


/* The sticky, selotaped label */
.sticky-badge {
  position: absolute;
  top: -128px; /* How far from top of viewport it sticks */
  right: 10px;
  z-index: 10;
  margin:0;
  padding:0;
}

.sticky-badge h2 {
  font-size: 10rem; /* Adjust as needed */
  font-weight: bold; /* Optional */
  background: linear-gradient(to bottom, white 50%, #ecfbf7 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* for browsers that support it */
  color: transparent; /* fallback for some browsers */
  margin:0;
  padding:0;
      font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
    font-weight: 900;	
}




/* Style the toggle button */
.dropdown-toggle-btn {
  display: none; /* Hidden by default, shown on small screens */

}

/* Sticky Sidebar */
.sidebar-regulation {
  width: 230px;  /* Sidebar width */
  position: sticky;
  top: 160px; /* Distance from the top of the screen */
  align-self: flex-start; /* Make sure it aligns with the top of the container */
  background: #fff;
  color: #111;
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
  border-radius: 16px;
  overflow: hidden;
  padding: .55rem;
  height: auto; /* Let the sidebar height grow with content */
  z-index: 999; /* Keep it above the content */
  		  transition: box-shadow 0.3s;
}
/* Card hover effect */
.sidebar-regulation:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.sidebar-regulation ul {
  list-style: none;
  padding: 0;
}

.sidebar-regulation a {
  display: block;
  color: #212529;
  text-decoration: none;
  padding: 0.45rem 0.9rem;
  transition: 0.3s ease;
font-size:.82rem;
letter-spacing:-0.5px;
text-transform:uppercase;
font-weight:500;
}

.sidebar-regulation a:hover {
  color: #000;
  background:rgba(236,251,247, 0.4);
  border-radius:8px;
}

.sidebar-regulation a.active {
  color: #000;
  background:#ecfbf7;
  border-radius:8px;
}

/* Content Area */
.content-regulation {
  flex: 1;
  text-align:left;

}

.regulation-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
  padding:20px 30px 30px 30px;
  transition: box-shadow 0.3s;
	margin-bottom:65px;
}




.section-regulation p{
margin-top:10px;
}

#sidebar {
  display: block;
  position: sticky;
  top: 160px;
}


/* Responsive */
@media (max-width: 768px) {
	
.dropdown-toggle-btn .arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg); /* down arrow */
  transition: transform 0.3s ease;
}

/* When sidebar is open, rotate the arrow up */
.dropdown-toggle-btn.active .arrow {
  transform: rotate(-135deg); /* up arrow */
}

  .dropdown-toggle-btn {
    display: flex;
  background: linear-gradient(135deg, #1d5c3c, #27ae60);
  border: none;
  padding: 1.2rem;
  font-size: 1rem;
  cursor: pointer;

  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  position: fixed;
  top: 110px;
  left: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  }

  /* Hide sidebar initially on small screens */
  #sidebar {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    position: fixed;
    top: 169px;
    left: 20px;
    z-index: 999;
	width:230px;  
  }

  /* When active, show sidebar as dropdown */
  #sidebar.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }	

	.container-regulation h3 .text-bg {

  padding:5px 15px;

}

.container-regulation h3 .text-bg span{
  display: none;
}	

.container-regulation h3 .icon {
  display: none;
}	
	
  .container-regulation {
    flex-direction: column;
  }

  /* Sidebar turns into a top bar */
  .sidebar-regulation {
    width: 260px;
    height: auto;
    top: 120px;
    right: 20px;
    z-index: 100; /* Ensure top bar stays above content */
	padding:10px;
	position:fixed;
  }


  .sidebar-regulation a {
    padding: .5rem;
    text-align: left;
	letter-spacing:-0.5px;
  }

  .content-regulation {
    padding-left: 0;
    padding-top: 0; /* Adjust to avoid content behind header */
  }
}





/* Container */
.teams-container {
  max-width: 900px;
  margin: 0 auto;
  padding:50px 20px;
}

.teams-container h2 {
font-weight:900;
font-family: "EB Garamond", serif;
font-optical-sizing: auto;	
margin-top:10px;
font-size:1.1rem;
}

/* Cards wrapper grid */
.cards-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* Individual Card */
.team-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
  padding: 10px;
  transition: box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.team-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);

}


.team-card-container {
    padding: 0;
    position: relative;
        aspect-ratio: 3 / 2;
}

.team-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.4s ease;
}


/* Responsive */
@media (max-width: 900px) {
  .cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  
}

@media (max-width: 600px) {
  .cards-wrapper {
    grid-template-columns: 1fr;
  }

  .team-card {
    padding: 1.5rem 1rem;
  }
}



.title {
    position: relative;
    margin: 150px 0 35px 0;
    text-align: center;
	  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 800;
}
.title.style3 {
    padding-bottom: 35px;
}

.title.style3:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    margin: 0 auto;
    height: 3px;
    width: 95%;
    max-width: 300px;
    background-color: #444444;
}

.title.style3:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    height: 9px;
    width: 55px;
    background-color: #222222;
    z-index: 1;
}

.title h3 {
  font-weight:900;
    margin: 0 auto;
}

.title p {
    margin: 5px 0 0;
    display: block;
}



.link {
  position: relative;
  color: inherit;
  z-index: 1;
  display: inline-block;
}

/* Base underline (always visible on mobile) */
.link__1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: #72a38e;
  z-index: -1;
  transition: height 0.2s ease-in-out;
}

/* On hover (desktop only) */
@media (hover: hover) and (pointer: fine) {
  .link__1::before {
    height: 3px;
  }
  .link__1:hover::before {
    height: 10px;
  }
}




.reveall {
  opacity: 0;
  transform: translateY(0px);
  transition: opacity 0.6s ease;
}

.reveall.animate-in {
  opacity: 1;

}


/* Timeline Container */
.timeline {
  position: relative;
  max-width: 1200px;
  margin:50px auto;
  padding:50px 20px;
}

/* Central Line */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(135deg, #0b3d2e, #145a32);
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Each timeline item */
.timeline-item {
  display: flex;
  justify-content: flex-start;
  position: relative;
  width: 100%;
  margin-bottom: 0;
}

/* Content on the left or right side */
.timeline-content {
  width: 45%;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
 box-shadow: 0 12px 24px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Positioning for left side items */
.timeline-content.left {
  align-self: flex-start;
  margin-left: 0;
  transform: translateX(-10px);
  text-align: right;
}

/* Positioning for right side items */
.timeline-content.right {
  margin-left: auto;
  align-self: flex-start;
  transform: translateX(10px);
  text-align: left;
}

/* The dots on the central line */
.timeline-item::after {
  content: "";
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  background-color: #0b3d2e;
  border-radius: 50%;
  border: 3px solid #fff;
  z-index: 1;
}

/* Position dots differently based on side */
.timeline-item:nth-child(odd)::after {
  left: calc(50% - 13px);
}
.timeline-item:nth-child(even)::after {
  right: calc(50% - 13px);
}

/* Year badge styling */
.year {
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
  background: linear-gradient(135deg, #0b3d2e, #145a32);
  padding: 6px 12px 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
  display: inline-block;
 box-shadow: 0 12px 24px rgba(0,0,0,0.1);	
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .timeline-item {
    flex-direction: column;
    align-items: center; /* Center the dot and content */
  }

  .timeline-content {
    width: 100%;
    text-align: left;
    transform: none !important; /* Remove left/right shifts */
    margin: 10px 0px 20px; /* Space between items */
  }

  /* Override left/right styles on mobile */
  .timeline-content.left,
  .timeline-content.right {
    margin-left: 0;
    text-align: left;
    transform: none;
  }

  /* Center dots vertically */
  .timeline-item::after {
    left: calc(50% - 13px); /* Centered dot */
    right: auto;
  }
}



.table-container {
  display: flex;
  max-width: 1200px; /* Set max width of the container */
  margin: 0 auto;
  padding: 20px;  
  gap: 50px;
  position: relative;
}

.table-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
  padding:20px 30px 30px 30px;
  transition: box-shadow 0.3s;
  min-width: 280px;
  position: relative;
  overflow: hidden;
margin-bottom:30px;
}

.table-card h3 .text-bg {
  display: inline-block;
  background: linear-gradient(135deg, #0b3d2e 0%, #145a32 100%);
  padding: 5px 5px 5px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
font-size:0.96rem;
font-weight:500;
margin:0 0 20px 0;
color:#fff;
}

.table-card h3 .icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-left: 10px;
  color: #212529;
  background: white;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.5);
      font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
    font-weight: 900;
font-size:1.2rem;	
}

.table-card h3 .text-bg-icon-first {
  display: inline-block;
  background: linear-gradient(135deg, #0b3d2e 0%, #145a32 100%);
  padding: 5px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
font-size:0.96rem;
  color: #fff;	
font-weight:500;	
}


.table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed; /* Enforce column widths */
}

.table th,
.table td {
  padding: 6px 8px;
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
}

/* Style header row */
.table th {
  background-color: #72a38e;
  color: #ffffff;
}

/* Alternate row coloring */
.table tbody tr:nth-child(even) {
  background-color: #ecfbf7;
}

/* Column widths - desktop */
.col-index {
  width: 5%;
  min-width: 30px;
}

.col-team {
  width: 25%;
  min-width: 150px;
  text-align: left !important;
}

.col-p,
.col-w,
.col-d,
.col-l,
.col-gf,
.col-ga,
.col-gd,
.col-pts {
  width: 7%;
  min-width: 50px;
}

/* Responsive styles for small screens */
@media (max-width: 500px) {
  .table {
    display: block;
  }
  .table thead {
    display: none;
  }
  .table tbody,
  .table tr,
  .table td {
    display: block;
    width: 100%;
  }
  .table tr {
    margin-bottom: 15px;
  }
  /* Style each cell for mobile view */
  .table td {
    padding-left: 20%;
    text-align: left;
    position: relative;
  }
  /* Show labels in mobile view */
  .table td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 50%;
    padding-left: 15px;
    font-size: 15px;
    font-weight: bold;
    text-align: left;
  }
  /* Make 'Team' column wider on mobile if needed */
  .col-team {
    width: 100%;
  }
}




/* results Section */
.results {
    padding: 0;
    background-color: var(--white);
    margin-top: 50px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.match-wrapper {
  display: flex;
  flex-direction: column;
}


.match-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  padding: 6px 10px;
  font-size: 0.80rem;
  margin-bottom: 0; /* since it's now grouped */
font-weight:500;	
}

.results-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
  padding: 15px;
  transition: box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.results-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.match-flex {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.match-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  font-size: 0.82rem;
}

.team-name {
  flex: 1;
  text-align: left;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.team-score {
  min-width: 36px;
  text-align: right;
  font-weight: bold;
}

.penalties {
  text-align: center;
  font-size: 0.8rem;
  margin-top: 4px;
  color: #777;
}



@media (max-width: 768px) {
  .results-grid {
    grid-template-columns: 1fr;
  }

  .match-meta {
    flex-direction: column;
    gap: 4px;
  }
}








/* Footer background and text styles */
.custom-footer {
  border-top: 1px solid #eee;
  color: #212529;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

/* Inner container for layout */
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  gap: 20px;
}

/* Style each section */
.footer-section {
  flex: 1 1 300px;
  margin: 0;
  padding: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* Ensure sections height adapts based on content */
  height: auto; /* Allow auto height based on content */
  min-height: 150px; /* Just a sensible minimum height to avoid collapse */
}

/* Headings with modern underline */
.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  font-weight: 900;
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  letter-spacing: -0.5px;
}

.footer-section h3::after {
  content: "";
  display: block;
  height: 3px;
  width: 60px;
  background: linear-gradient(135deg, #0b3d2e 0%, #145a32 100%);
  margin-top: 8px;
  border-radius: 2px;
  transition: width 0.3s;
}

.contact {
  margin-top: 50px;
}

/* Paragraph styles */
.footer-section p {
  margin-bottom: 12px;
}

/* Links with animated underline effect */
footer a {
  text-decoration: none;
  position: relative;
}

/* Responsive layout adjustments */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
	gap:0;  
  }

  .footer-section {
    /* On mobile, let sections grow based on their content */
    padding: 15px;
    flex: 1 1 auto; /* Ensures each section adapts its height based on content */
    min-height: auto; /* Remove any forced minimum height */
    max-height: none; /* No cap on height */
  }

  .contact {
    margin-top: 0;
  }
}


.entry-content{
padding:0 0 60px 0;
}

/* Basic styling for images inside posts */
.single-post .wp-block-image {
    text-align: center;
    margin: 2rem auto;
    max-width: 100%;
}

.single-post .wp-block-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

/* Optional: Style captions */
.single-post .wp-block-image figcaption {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    text-align: center;
}



.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    transition: box-shadow 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.gallery-item:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}


.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
      object-position: center;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-image {
    max-height: 80vh;
    max-width: 90vw;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10;
}

.lightbox-caption {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    padding: 10px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 14px;
}

/* Lightbox Navigation */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 10;
}

.lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.6);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .gallery-grid {
grid-template-columns: 1fr !important;
    }
      
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .lightbox-image {
        max-width: 95vw;
    }
}

/* Pagination styles */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center; /* Vertically center all items */
  margin-top: 40px;
  list-style: none;
  padding: 0;
}

/* Style for page number links and spans */
.pagination a,
.pagination span {
  display: inline-flex; /* Use flex to center content vertically */
  justify-content: center;
  align-items: center;
  margin: 0 8px; /* More space between buttons */
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #333;
  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: box-shadow 0.3s;
	  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

/* Hover effect for circles */
.pagination a:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Style for the current page (active) */
.pagination .current {
  background: linear-gradient(135deg, #1d5c3c, #27ae60);
  color: #fff;
  pointer-events: none;
}

/* Additional spacing for prev/next links if they are <a> tags */
.pagination a.prev,
.pagination a.next {
  margin: 0 15px; /* Extra space for prev/next buttons */
  padding: 8px 12px;
  border-radius: 4px;
}

/* Optional: Style for prev/next buttons if you want them as circles too */
.pagination a.prev,
.pagination a.next {
  width: auto;
  height: auto;
  padding: 8px 15px;
  border-radius: 4px;
}


.prize-container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

.prize-container.wide {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

.prize-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 30px 0;
 align-items: stretch;	
}

.prize-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  transition: box-shadow 0.3s;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.highlight {
  background: linear-gradient(135deg, #0b3d2e 0%, #145a32 100%);
  color: #fff;
  box-shadow: 0 16px 32px rgba(0,0,0,0.2);
}

.full-width {
  width: 100%;
}

.half-width {
  width: calc((100% - 30px) / 2);
}

.third-width {
  width: calc((100% - 60px) / 3);
}

@media (max-width: 820px) {
  .half-width,
  .third-width {
    width: 100%;
  }
}

.subsection-title {
  margin: 40px 0 10px 0;
  font-weight: 500;
}



