@import './variables/_colors.css';
@import './fonts.css';


@import './templates/_header.css';
@import './templates/_mobile-menu.css';
@import './templates/_stories-section.css';
@import './templates/_content.css';
@import './templates/_pagination.css';
@import './templates/_footer.css';

* { 
	box-sizing: border-box;
}
 
html,
body {
	border: none;
	margin: 0;
	padding: 0; 
}

body {
	font-family: Pitch, "Helvetica Neue", Helvetica, sans-serif;  
	font-size: 16px;
	color: var(--black);
	background: #fff;
}

/* Remove scroll from body when mobile menu is opened -----------------*/ 
body.mobile-menu-opened { 
    overflow: hidden;
}

.intialized-blog {
	width: 100%;
	height: 100%;
}

.page-layout {
	position: relative; 
	margin: auto;
}

a {
	color: var(--black);
	text-decoration: none;
}

.black-primary-btn {
    border: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 6px 20px;
    gap: 8px;  
    height: 32px; 
    background: var(--black);
}

.black-primary-btn:hover {
    cursor: pointer;
} 

.black-primary-btn img { 
    transition: all .2s ease-in-out;
}

.black-primary-btn:hover img {
    transform: rotate(45deg); 
}

.black-primary-select {
	font-family: 'Sohne Mono'; 
	font-size: 14px;
	line-height: 24px; 
	letter-spacing: 0.06em;
	color: var(--white); 
	background-color: var(--black);
	padding: 7px 65px 7px 24px;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url(../icons/Arrow-down.svg);
    background-repeat: no-repeat;
    background-position-x: 95%;
    background-position-y: 7px; 
    border: none; 
} 

.rectangle-pink {
    position: absolute;
    top: 540px;
    min-height: 526px;
    background-color: var(--secondary);
    width: 100%;
}

.rectangle-yellow {
    position: absolute;
    top: 540px;
    min-height: 526px;
    background-color: var(--primary);
    width: 100%;
}

.rectangle-blue {
    position: relative;
    width: 100%; 
    background-color: var(--add-color); 
}

.mb-0 {
    margin-bottom: 0;
}
 
.pb-0 {
    padding-bottom: 0;
}

.no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
}

.no-results h1 {
    margin: 0;
    margin-top: 50px;
    font-family: 'Sohne Mono'; 
    font-size: 18px;
    line-height: 24px;
	letter-spacing: 0.05em;
    text-align: center;
}


/* Small devices (landscape phones, less than 768px) */
@media (max-width: 768px) {  
    
    .black-primary-select {
        padding: 7px 45px 7px 24px;
        background-position-y: 3px;
    }
}

/*  X-Small devices (portrait phones, less than 576px) */
@media (max-width: 576px) {

    .black-primary-select {
        padding: 7px 45px 7px 24px;
        background-position-y: 3px;
    }

}