.single-galery {
    #content {
        background-color: #fff;

        h1 {
            font-weight: normal;
        }

        .gallery-count {
            font-size: 16px;
            margin-bottom: 24px;
            margin-left: 96px;
        }
    }

    .entry-content {
        p {
            margin-left: 96px;
            margin-right: 96px;
        }

        .page-share-buttons {
            margin-top: 80px;
        }

        .img-countent {
            margin-top: 60px;
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
            margin-left: 96px;
            margin-right: 96px;

            .img-item {
                width: calc((100% - 12px) / 4);
                overflow: hidden;
                aspect-ratio: 3 / 2;
                position: relative;

                img {
                    transition: transform 0.3s ease;
                    box-shadow: none !important;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    position: absolute;
                    top: 0;
                    left: 0;
                }

                a {
                    transition: transform 0.3s ease;
                    overflow: hidden;
        
                    &:hover {
                        cursor: pointer;
        
                        img {
                            transform: scale(1.1);
                        }
                    }
                }
            }
        }
    }

    .related-content {
        .item {
            overflow: hidden;

            img {
                transition: transform 0.3s ease;
                box-shadow: none !important;
                margin-bottom: 0px !important;
            }

            .item-image {
                overflow: hidden;
                margin-bottom: 16px;
            }

            a {
                transition: transform 0.3s ease;
                overflow: hidden;
    
                &:hover {
                    cursor: pointer;
    
                    img {
                        transform: scale(1.1);
                    }
                }
            }

            .item-category .title {
                font-size: 14px;
                background-color: rgba(158, 121, 77, 0.10);
                padding: 5px 7px 5px 7px;
                color: #041F33;
            }

            .item-image img {
                width: 544px;
            }

            .item-link {
                margin-top: 40px;
            }

            .item-category {
                .category-item {
                    display: flex;
                    justify-content: center;
                    display: inline-block;
                    align-items: center;
                    flex-shrink: 0;
                    font-size: 14px;
                    padding: 5px;
                    background-color: rgba(158, 121, 77, 0.1);
                    margin-right: 10px;
                }
            }

            &:hover .item-title {
                text-decoration: underline;
            }
        }
    }
}

@media (max-width: 1024px) {
    .single-galery {
        .entry-content {
            .img-countent {
                .img-item {
                    width: calc((100% - 12px) / 3);
                }
            }
        }
    }
}

@media (max-width: 768px) {
    .single-galery {
        & .entry-content {
            .img-countent {
                margin-top: 30px;
                margin-left: 0;
                margin-right: 0;
            }

            & .img-countent {
                .img-item {
                    width: calc((100% - 12px) / 3);
                }
            }
        }

        & #content {
            .gallery-count {
                margin-left: 0;
            }
        }
    }
}

@media (max-width: 450px) {
    .single-galery {
        & .entry-content {
            & .img-countent {
                .img-item {
                    width: calc((100% - 12px) / 2);
                }
            }
        }
    }
}
