.glamorGroup {
    background-color: rgb(var(--color-background));
		    display: flex;
		    gap: 10px;
		}

		.glamorSlide {
		    overflow: hidden;
		    position: relative;
		    flex: 1;
		}

		.glamorSlide img {
		    transition: all .8s;
		    display: block;
		    width: 100%;
		    aspect-ratio: 917 / 694;
		    object-fit: cover;
		}



		.glamorPost h2 {
		    letter-spacing: 10px;
		    font-weight: bold;
		    line-height: 1.1;
		    font-size: clamp(30px, 3.5vw, 60px);
		}

		.glamorPost p {
		    line-height: calc(1em + 10px);

		}

		.glamorBtn {
		    display: flex;
		    justify-content: center;
		    margin-top: 37px;
		    gap: 10px;
		}


		.glamorSlide:hover img {
		    transform: scale(1.1);
		}

		@media screen and (max-width:780px) {
		    .glamorGroup {
		        flex-direction: column;
		    }

		    .glamorBtn {
		        flex-direction: column;
		        margin-top: 26px;
		        align-items: center;
		    }

		    .glamorSlide img {
		        aspect-ratio: 335 / 376;
		    }

		}