.po-gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.po-gallery-group {
    display: flex;
    gap: 20px;
}

.po-col-1-3 {
    flex: 453;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.po-col-2-3 {
    flex: 867;
}

.po-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.po-col-1-3 .po-gallery-item {
    aspect-ratio: 453 / 400;
}
.po-col-2-3 .po-gallery-item {
    aspect-ratio: 867 / 820;
}

.po-gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.po-gallery-item-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    pointer-events: none;
}

.po-gallery-item-text {
    width: 100%;
    padding: 43px 39px 26px;
    box-sizing: border-box;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(28.2px);
    -webkit-backdrop-filter: blur(28.2px);

    transform: translateY(0px);
    opacity: 1;
    transition: none;
    will-change: transform, opacity;
}
.po-gallery-init .po-gallery-item-text {
    transform: translateY(0px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
	min-height: 33%;
}

.po-gallery-init .po-gallery-item:hover .po-gallery-item-text {
    transform: translateY(0);
    opacity: 1;
}

.po-gallery-item-text h3,
.po-gallery-item-text p {
    font-family: 'Roboto', sans-serif;
    color: #FFFFFF;
    margin: 0;
}

.po-gallery-item-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.po-gallery-item-text p {
    font-size: 14px;
    font-weight: 400;
}

.po-gallery-load-more {
    text-align: center;
    margin-top: 40px;
	display: flex;
    justify-content: center;
}

button.po-load-more-btn {
    width: 171px;
    height: 42px;
    padding: 10px;
    gap: 10px;
    border-radius: 7px;
    border: 1px solid #A77B51;
    background: #ffffff;
	text-transform: none;
    font-size: 14px;
    color: #1a1a1a;
}

@media (max-width: 1000px) {
    .po-gallery-grid {
        gap: 20px;
        align-items: center;
    }

    .po-gallery-group {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .po-col-1-3,
    .po-col-2-3 {
        flex: none;
        width: 100%;
        max-width: 700px;
		min-width: 369px;
    }

    .po-col-1-3 .po-gallery-item,
    .po-col-2-3 .po-gallery-item {
        aspect-ratio: 700 / 662;
		min-width: 369px;
    }
}
