html, body {
    font-family: 'DM Sans', sans-serif;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/*---------------- HERO ------------------*/
.hero {
    width: 80%;
    margin: auto auto;
}

.hero-header {
    padding: 29px;
    display: flex;
    justify-content: space-between;
}

.logo {
    width: 40px;
}

.menu {
    justify-content: flex-end;
    display: flex;
    gap: 20px;
    font-size: 18px;
    color: #91aeb8;
    font-weight: 400;
    white-space: nowrap;
    text-align: center;
    margin: auto 0;
}

.projectsMenu {
    font-feature-settings: "clig" off, "liga" off;
    font-family: DM Sans, sans-serif;
    line-height: 100%;
}

.blogsMenu{
    font-feature-settings: "clig" off, "liga" off;
    font-family: DM Sans, sans-serif;
    line-height: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.heroTitle {
    margin-top: 130px;
    margin-bottom: 5px;
    font-feature-settings: "clig" off, "liga" off;
    font: 700 125px DM Sans, sans-serif;
    color: #91aeb8;
    letter-spacing: 0.5px;
}




.quote {
    margin-bottom: 50px;
    color: #91aeb8;
    width: 40%;
}

h3 {
    color:#7c9aa5;
    font: 700 28px DM Sans, sans-serif;
    text-align: left;
    font-feature-settings: "clig" off, "liga" off;
    margin-top: 20px;
}

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

@media (max-width: 900px) {
    .blogsContainer {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for medium screens */
    }
}

@media (max-width: 600px) {
    .blogsContainer {
        grid-template-columns: 1fr; /* 1 column for small screens */
    }
}

.blogCard {
    background-color: white;
    border: 1px solid #bfd8e0;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blogCard:hover {
    transform: translateY(-5px);
    box-shadow: 4px 8px 16px rgba(0, 0, 0, 0.2);
}

.blogText {
    margin-top: -10px;
    margin-bottom: 20px;
    font: 400 18px/25px DM Sans, san-serif;
    width: 100%;
    text-align: left;
    color:#91aeb8;
}

.projectsButton {
    color:#91aeb8;
    font: 600 18px/25px DM Sans, san-serif;
    letter-spacing: 0.65px;
}

.extraSpace {
    height: 20px;
}

/*---------------- BLOGS ------------------*/
.blogContainer {
    width: 80%;
    margin: 30px auto;
    align-items: center;
}

.blogTitle {
    color:#91aeb8;
    font: 600 58px DM Sans, san-serif;
    line-height: 60px;
}

.blogQuote {
    color:#7c9aa5;
    width: 60%;
    line-height: 18px;
    margin: 5px 0px;
}

.blogDate {
    color:#7c9aa5;
    margin: 0px 0px;
    font: 700 14px DM Sans, sans-serif;
}

.blogImage {
    margin-top: 20px;
    width: 80%;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.blogCaption {
    color: #BFD8E0;
    text-align: center;
    margin: 0px 0px 20px 0px;
}

.link {
    text-decoration: underline;
}

h2 {
    color:#7c9aa5;
    font: 700 38px DM Sans, sans-serif;
    margin: 20px 0px 0px 0px;
}

.blogContent {
    color:#7c9aa5;
    text-indent: 25px;
    font: 400 18px DM Sans, sans-serif;
    margin: 5px 0px;
}


li {
    margin: 5px 0px;
    font: 400 18px DM Sans, sans-serif;
    color:#7c9aa5;
}

.footer {
    height: 50px;
}

/* Space around the whole Giscus comment box */
.giscus {
  margin-top: 4rem;
  padding: 1rem 0;
  border-top: 1px solid #d0d7de;
}

/* Reuse your blogContainer layout for the Giscus iframe */
.giscus-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 20px;
}

/* Make sure the iframe inside resizes properly */
.giscus-frame {
    width: 100% !important;
    max-width: 100%;
    border: none !important;
}

