/* -- -- Hero section -- -- */
.hero__section {
    padding-top: var(--size-14);
    padding-bottom: var(--size-13);
    position: relative;
    overflow: hidden;
}

.hero__section::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    inset: 0;
    background-color: var(--deep-blue-main);
    opacity: 0.50;
    z-index: -1;
}

.hero__section .hero__image{
    position: absolute;
    inset: 0;
    object-fit: cover;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.hero__section .hero__content{
    position: relative;
    z-index: 3;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: var(--size-4);
}

.hero__section .hero__content .hero__title {
    color: var(--white);
}

.hero__section .hero__content .hero__text{
    margin-bottom: var(--size-6);
}

.hero__section .hero__content .hero__text p {
    color: var(--white);
}

.hero__section .hero__content .hero__button-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--size-6);
}

@media (min-width: 768px) {
    .hero__section {
        padding-top: var(--size-16);
        padding-bottom: var(--size-15);
    }

    .hero__section .hero__content{
        width: 90%;
    }
}

@media (min-width: 1200px) {
    .hero__section .hero__content{
        width: 70%;
    }
}
/* -- -- End of Hero section -- -- */


/* -- -- About section -- -- */
.about__section {
    padding-top: var(--size-12);
    padding-bottom: var(--size-12);
    background-color: var(--white);
}

.about__section .container{
    display: flex;
    flex-direction: column;
    gap: var(--size-10);
}

.about__section .about__content{
    display: flex;
    flex-direction: column;
    gap: var(--size-4);
}

.about__section .about__image-container{
    width: 100%;
    overflow: hidden;
    border-radius: var(--size-3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__section .about__image-container .about__image{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .about__section {
        padding-top: var(--size-13);
        padding-bottom: var(--size-13);
    }

    .about__section .container{
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: var(--size-8);
    }

    .about__section .about__content{
        gap: var(--size-6);
        margin: 0 var(--size-12) 0 0;
    }
}
/* -- -- End of About section -- -- */


/* -- -- Research subject section -- -- */
.research__section {
    background-color: var(--deep-blue-50);
}

/* Rest of the styles are in main.css */

/* -- -- End of Research subject section -- -- */


/* -- -- Events section -- -- */
.next-event__section {
    background-color: var(--white);
}

/* Rest of the styles are in main.css */

/* -- -- End of Events section -- -- */


/* -- -- Publications section -- -- */
.publications__section {
    padding-top: var(--size-12);
    padding-bottom: var(--size-12);
    background-color: var(--deep-blue-50);
}

.publications__section .container{
    display: flex;
    flex-direction: column;
    gap: var(--size-8);
}

.publications__header{
    display: flex;
    flex-direction: column;
    gap: var(--size-4);
}

.publications__list{
    display: flex;
    flex-direction: column;
    gap: var(--size-6);
}

@media (min-width: 768px) {
    .publications__section {
        padding-top: var(--size-13);
        padding-bottom: var(--size-13);
    }

    .publications__section .container{
        gap: var(--size-8);
    }

    .publications__header{
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .publications__list{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--size-7);
    }

    .publications__list .publication-card:first-child{
        grid-column: 1 / 3;
    }
}

@media (min-width: 1200px) {
    .publications__list{
        grid-template-columns: repeat(3, 1fr);
    }
}
/* -- -- End of Publications section -- -- */


/* -- -- Newsletter section -- -- */
.newsletter__section {
    background-color: var(--white);
}

/* Rest of the styles are in main.css */

/* -- -- End of Newsletter section -- -- */


/* -- -- Contact section -- -- */
.contact__section {
    background-color: var(--deep-blue-50);
}

/* Rest of the styles are in main.css */

/* -- -- End of Contact section -- -- */
