/*                                                                      ___        __                                */
/*                                                                     |_ _|_ __  / _| ___                           */
/*                                                                      | || '_ \| |_ / _ \                          */
/*                                                                      | || | | |  _| (_) |                         */
/*                                                                     |___|_| |_|_|  \___/                          */

/* ------------------------------------------------------------------- Information section ------------------------- */
#information {
    grid-column: 2/11;
    padding-right: 50px;

    overflow: auto;
}

#information.bento_box {
    padding-right: 15px;
}

#information > div {
    height: auto;
    padding: 20px;
    margin-bottom: max(2.5vh, 25px);

    border-radius: 40px;
}

#information h3 {
    color: var(--green_darker);
    font-size: var(--font_xl);
    font-weight: 500;
    letter-spacing: 8px;

    margin-bottom: max(1.5vh, 15px);
}

#information p, #information ul {
    color: var(--black);
    font-size: var(--font_m);
    letter-spacing: 1px;
    line-height: 140%;

    margin-bottom: max(1.5vh, 15px);
}

.ul_list {
    margin-left: 30px;
    margin-right: 60px;
}

#information .margin_plus {
    margin-top: 50px;
    margin-bottom: 100px;
}

#information div:last-child {
    height: auto;
}

#information li {
  display: flex; /* zajistí zarovnání obsahu vedle kolečka */
  align-items: flex-start; /* zarovná kolečko s textem nahoře */
  gap: 1.5ch; /* mezera mezi kolečkem a textem */

  margin-bottom: max(1vh, 10px);
}

#information li::before {
  content: "";
  background: var(--green);
  border-radius: 50%;
  width: 12px;
  height: 12px;
  flex-shrink: 0; /* aby se kolečko nezmenšovalo */
  margin-top: .4em; /* drobné vyrovnání s textem, můžeš upravit dle fontu */
}

#information img {
    width: max(20%, 300px);

    border-radius: 20px;
}

#aim {
    background-color: var(--green_light);
}

.green_box {
    padding: 30px;
    margin-bottom: max(1.5vh, 15px);

    background-color: var(--green);
    border-radius: 30px;
}

#information .green_box p {
    color: var(--white);
}





/* ------------------------------------------------------------------------ Tablets --------------------------- */
@media screen and (min-width: 801px)  and (max-width: 1024px) and (orientation: portrait) {
    #information_text_vertical :is(h1, h2, h3) {
        font-size: 5vh;
        letter-spacing: 4px;
    }

    #information h3 {
        font-size: var(--font_l);
        line-height: 140%;
        letter-spacing: 2px;
    }
}




/* ------------------------------------------------------------------------ Mobile --------------------------- */
@media screen and (max-width: 800px) and (orientation: portrait) {
    #information h3 {
        font-size: var(--font_l);
        line-height: 140%;
        letter-spacing: 2px;
    }

    #information p, #information ul {
        font-size: var(--font_s);
        line-height: 120%;
    }

    #information > div {
        height: auto;
    }

    .ul_list {
        margin-left: 0;
        margin-right: 0;
    }

    .green_box {
        padding: 15px;
    }
}



@media screen and (max-width: 950px) and (orientation: landscape) {
    #information h3 {
        font-size: var(--font_l);
        line-height: 140%;
        letter-spacing: 2px;
    }

    #information p, #information ul {
        font-size: var(--font_s);
        line-height: 120%;
    }

    #information_text_vertical :is(h1, h2, h3) {
        font-size: 7vh;
        letter-spacing: 4px;
    }
}