.presscenter-section {
    padding: 85px 0px;
}

.news-wrapper {
    display: flex;
    /*grid-template-columns: repeat(auto-fit, minmax(324px, 1fr));*/
    justify-content: space-between;
    margin-bottom: 100px;
}

.photos__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__menu {
    --padding-items: 20px;

    display: flex;
    color: white;
    align-items: center;
    list-style-type: none;
}

.header__menu_item {
    text-transform: uppercase;
    font-weight: 700;
}

.header__menu_item a {
    color: inherit;
    text-decoration: none;
    transition: all 300ms;
}

.header__menu_item a:hover {
    color: #0481d4;
}

.header__menu_item:first-child {
    padding-right: var(--padding-items);
    font-size: 1.7rem;
    text-transform:capitalize
}

.header__menu_item:not(:last-child) {
    border-right: 1px solid #016BB2;
}

.header__menu_item:not(:first-child) {
    padding: 0px var(--padding-items) 0px var(--padding-items);
    font-size: 1rem;
}

.photos__section {
    padding-bottom: 65px;

}

.photos__header {
    padding-bottom: 25px;
}

.gallery {
    display: grid;
    height:450px;
    gap: 18px;
    
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 1fr 1fr;
    
    grid-template-areas: 
        "big small-top"
        "big small-bottom";
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    /*box-shadow: 0 4px 15px rgba(0,0,0,0.1);*/
    user-select: none;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
    transition: transform 600ms;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    background: linear-gradient(to top, #000000c7, transparent);
    pointer-events: none;
    z-index:2;
}

.gallery-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 22px;
}

.item-1 {
    grid-area: big;
}

.item-2 {
    grid-area: small-top;
}

.item-3 {
    grid-area: small-bottom;
}

.label {
    position: absolute;
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    gap: 12px;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(to top, #000000c7, transparent);*/
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    z-index: 2;
}

.item-1 .label p {
    font-size: 22px;
}
