.full-width-content:nth-of-type(n+1):nth-of-type(odd) {
  background-color: var(--background-full-alternate);
}
.full-width-content:nth-child(1) {
    position: relative;
   
    & .content-text{
        position: absolute;
        width: 600px;
        max-width:calc(100% - 2.1rem);
        height: 100%;
        top: 0;
        left: calc(45vw - var(--site-max-width) / 2);
        @media screen and (max-width: 1380px) { left: 1rem }
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: left;
        color: #FFF;
        font-size: 1rem;
        @media screen and (max-width: 800px) {  font-size: 0.8rem; }
    }
    
    & h1, h2 {
        font-weight: 600;
        text-transform: uppercase;
        margin: 0;
        font-size: 2.5em;
        text-shadow: 2px 2px 10px #000000, 0 0 20px #000, 0 0 40px #000;
      
    }
    & h2{ font-weight: 500; font-size: 1.2em;}
}
/* UL: horizontal row */
.artistHerowImagesrapper{
  display:flex;
  flex-wrap:nowrap;
  overflow:hidden;
  width:100%;
  margin:0; padding:0; list-style:none;
  z-index: 1;
  & li{
        flex:0 0 100%;
        aspect-ratio:4/1;
        @media (max-width: 900px) { aspect-ratio:  4 / 2;};
        @media (max-width: 600px) {aspect-ratio:  4 / 3;}
        position:relative;
        overflow:hidden;
        min-height:0;
    }
    & li > picture{
        position:absolute;
        inset:0;             /* top/right/bottom/left = 0 */
        width:100%;
        height:100%;
        display:block;
    }
    & li > picture > img{
        width:100% !important;
        height:100% !important;    /* override img{height:auto} */
        max-width:none;            /* avoid weird constraints */
        object-fit:cover;
        object-position: top;      /* anchor cropping to the top of the image */
        display:block;
        pointer-events:none;
        user-select:none;
        }

}

.filterart-top-title-num {
        grid-area: numerator;
        font-size: 1.4rem;
        padding: 0 0 10px 0;
        font-weight: 600;
        margin: 1rem 0;
        & .items-num-holder {
            font-size: 0.7em;
        }
    }

.grid-view{
    display: grid;
    grid-template-areas:
        "filters-block resultBlock"
        "filters-block paganation";
    gap: 1rem;
    grid-template-columns: 260px auto;
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    @media screen and (max-width:760px) {
		grid-template-areas:
			"filters-block"
			"resultBlock"
			"paganation";
		grid-template-columns: 1fr;
		grid-template-rows: repeat(8, auto);
	}

    & .sorters-block{
        grid-area: sorters-block;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 1em;
        @media screen and (max-width: 550px) {
			font-size: 0.83rem;
		};
		@media screen and (max-width: 450px) {
			font-size: 0.9rem;
			gap: 0.2em;
			justify-content: flex-start;
			flex-direction: column;
			align-items: flex-start;
			
		};
         & .per-page-container {
            position: relative;
            & .per-page-selected {
                text-transform: uppercase;
                border-bottom: solid 1px rgba(0, 0, 0, 1);
                cursor: pointer;
                padding: 5px 10px;
            }
            & .top_per_page_artworks {
                    font-weight: 600;
                }
                        & .items-per-page {
                width: 100%;
                position: absolute;
                top: 100%;
                height: auto;
                z-index: 1;
                background-color: rgba(255, 255, 255, 1);
                border: solid 1px rgba(229, 229, 229, 1);
                box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.06);
                padding-right: 10px;
            }
            & .per_page_artworks {
                    padding: 10px 5px 0px 10px;
                    cursor: pointer;
                }
         }
       
    };
    & .filters-block{
        grid-area: filters-block;
        padding: 0;
        margin: 0;
        min-height: 100px;
        box-sizing: border-box;
		& .filter-guides-title{
			padding: 10px 20px 10px 10px;
			cursor: pointer;
			font-size: 0.9em;
			font-weight: 700;
			text-transform: uppercase;
			width: 94%;
			& span{
				float:right;
			}
		}
		& .filter-cr{
			border-top: 1px solid rgb(0, 0, 0);
			margin-bottom: 15px;
		}
		& .type_filter{
			margin-top: 8px;
			text-transform: uppercase;
			font-size: 0.9em;
			& label{
				display: flex !important;
				align-items: center;
				gap: 8px;
				cursor: pointer;
				font-weight: 600;
				& input{
					width: 23px;
					height: 23px;
					font-size: 0.9em;
					flex-shrink: 0;
					accent-color: #000;
				}
				& a{
					text-decoration: none;
					color: black;
					font-weight: 600;
				}
			}
		}
    };
    & .resultBlock{
        grid-area: resultBlock;
        padding: 0;
        margin: 0;
        position: relative;
        min-height: 100px;
        box-sizing: border-box;
    };
    & .pagination-holder{
        grid-area: paganation;
        min-height: 100px;
    }
    
    

}

ul.guide_list{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    font-size: 1.13rem;
    gap: 0;
    & * {box-sizing: border-box; text-decoration: none; color: var(--font_color_main);}
    & > li{
        flex: 0 0 33.3333%;
        width: 100%;
        aspect-ratio: 3/4;
        overflow: hidden;
        padding: 0.9rem;
        @media screen and (max-width: 1000px) {flex: 0 0 50% ;};
		@media screen and (max-width: 370px) {flex: 0 0 100%;};
    }
    & .list_item_container{
        padding: 0.5em;
        border-radius: 10px;
        width: 100%;
        position: relative;
        aspect-ratio: 3/4;
        &:hover{
            transition: all 0.3s ease-in-out;
            box-shadow: 1px -1px 6px rgba(0, 0, 0, 0.35);
            z-index: 2;
        }

    }
    & scalable-to-parent{
        
        width: 275px;
        
        display: block;
    }
    
    & .media_container{
        width: 100%;
        overflow: hidden;
        aspect-ratio: 1.4;
        overflow: hidden;
        position: relative;
        & img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }
        &:hover img{
            transform: scale(1.05);
        }
    }
    & h5{
        font-size: 0.9rem;
        font-weight: 600;
        margin: 0.5em 0 ;       
        overflow: hidden;
		text-transform: uppercase;
    }
    & p{ 
        font-size: 0.9rem;
        line-height: 1.5em;
        overflow: hidden;
        text-overflow: ellipsis;
        margin:4px 0 ;
    }
    & .overGradiant{
        position: absolute;
        bottom: .5em;
        left: 50;
        width: calc(100% - 1em);
        height: 3em;
        background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #FFF 100%);
        pointer-events: none;
    }
}

.guides-top-h1{
	& h1{
		font-size: 1.6rem;
		font-weight: 600;
		margin-block: 0;
		text-transform: capitalize;
	}
}
.guides-top-h2{
	& h2{
		font-size: 1.2rem;
		font-weight: 500;
		margin: 7px 0 0 0;
		text-transform: lowercase;
	}
}
.strip_art {
  box-sizing: border-box;
  grid-area: filter_indicator;
  padding: 10px 0 0 0;
  width: 100%;
  background-color: rgba(229,229,229,1);
  border-radius: 25px;
  font-size: 0.9rem;
  padding: 7px;
  font-weight: 600;
  display: flex;
  justify-content: left;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  text-transform: uppercase;
  margin: 15px 0px;
  & .filter-block-guide {
      padding: 6px 7px;
      border-radius: 25px;
      cursor: pointer;
      background-color: #fff;
      border: solid 1px rgba(0,0,0,1);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.5rem;
	  & .icon {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
      }
    }
	& .bgblack{
		background-color:#000 !important;
		color:#fff;
		
		& .icon circle {
		  fill: black;
		}
		& .icon path {
		  fill: white;
		}
	}
	& .guides_strip_all{ 
		padding: 6px 7px;
		border-radius: 25px;
		cursor: pointer;
		background-color: #fff;
		border: solid 1px rgba(0,0,0,1);
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 0.5rem;
		& .icon {
			width: 16px;
			height: 16px;
			flex-shrink: 0;
		  }
	}
}
.strip_art:empty {
    padding: 0;
}

