.main-container a {
    text-decoration: none;
    color: #1a73e8;
}
.main-container a:hover {
    opacity: 0.7;
    text-decoration: none;
    color: #1a73e8;
}

.gallery-container {
    max-width: 768px;
    margin: 0 auto;
}
.hero-image {
    width: 100%;
    position: relative;
    margin-bottom: 3rem;
    height: 50vh;
    max-height: 500px;
    overflow: hidden;
}
.hero-image figure {
    margin: 0;
}
.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
ul.shop-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.description-container {
    margin-bottom: 3rem;
}
.description-header {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.description-text {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.highlight-container {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: thin;
    -ms-overflow-style: none;
    margin-bottom: 3rem;
    gap: 1rem;
    margin-left: 1rem;
}
.highlight-container::-webkit-scrollbar {
    display: none;
}

.highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.highlight-icon {
    width: 8.8rem;
    highlight: 8.8rem;
    aspect-ratio: 1;
    position: relative;
}

.highlight-icon-image-wrapper {
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 50%;
    padding: 2px;
    width: 100%;
    height: 100%;
}
.highlight-icon-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid #fff;
    border-radius: 50%;
}

.highlight-title {
    display: flex;
    justify-content: center;
    font-size: 8px;
}

.posts-container {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 3px;
}

.post-item {
    max-width: 100%;
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.post-item:hover {
    opacity: 0.8;
}
.post-item img,
.post-item video {
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.post-item a {
    display: block;
    width: 100%;
    height: 100%;
}
.post-item .post-icon {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 10;
}
.post-item .post-icon span {
    color: #fff;
    text-shadow: 0 0 1px #000;
}

.material-symbols-outlined {
    font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 20;
    font-size: 20px;
}
@media screen and (max-width: 768px) {
    .description-container {
        width: 90%;
        margin: 0 auto;
        margin-bottom: 3rem;
    }
    .hero-image {
        height: 40vh;
        max-height: 400px;
    }
}
