.elementor-kit-44{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-7a9ebdb:#262626;--e-global-color-00647e4:#505050;--e-global-color-d80ddf4:#FFFFFF;--e-global-color-f0ab6a5:#5D74E0;--e-global-color-de2e32c:#F5FF53;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;background-color:var( --e-global-color-7a9ebdb );color:var( --e-global-color-d80ddf4 );}.elementor-kit-44 e-page-transition{background-color:#FFBC7D;}.elementor-kit-44 a{color:var( --e-global-color-d80ddf4 );}.elementor-kit-44 a:hover{color:var( --e-global-color-d80ddf4 );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .header-inner{width:494px;max-width:100%;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */html {
    scroll-behavior: smooth;
}

/* General link styling */
.card-link {
  display: block;
  text-decoration: none;
  overflow: visible;
}

/* Card container to ensure aspect ratio */
.card-container {
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* Ensures a square aspect ratio */
  border-radius: 30px;
}

/* Card content styling */
.card-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  box-shadow: var(--wp--preset--shadow--deep);
  overflow: visible;
}

/* Card image background */
.card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 30px;
}

/* Overlay gradient */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
  border-radius: 30px;
}

/* Text content inside the card */
.card-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: white;
  padding: 10px;
  box-sizing: border-box;
}

.card-text h2 {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
}

.card-text p {
  margin: 5px 0 0 0;
  font-size: 16px;
}


/* For individual project pages */

.contributors-list h5{
    line-height: 0.5em;
}

.project-content h2 {
    counter-increment: section;
    color: red !important;
}

.project-content  h2::before {
    content: "TEST";
    color: red;
}

.project-content  h4 {
    counter-reset: subsection;
    counter-increment: subsection;
}

.project-content  h4::before {
    content: counter(section) "." counter(subsection) ". ";
}/* End custom CSS */