/*!
Theme Name: piiraisensahkotyo
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
*/


/*** UNIVERSAL ***/
* {
    box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
    margin: 0;     
    background:var(--white);
    opacity: 0;
    font-family: "Inter", sans-serif;
}
img {
    display: block;
}
a:focus, button:focus, input:focus {
	outline:none;
}
:root {
    --black: #000000;
    --white: #ffffff;
    --light: #f5f6f8;
    --grey: #5b5b5b;
    --orange: #e7870a;
    --dark-orange: #cf8331;
    --max-width:1480px;
}
p, li {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.2px;
}
p strong {
    color:var(--black);
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Inter", sans-serif;
}
h1 {
    font-size: 104px;
    line-height: 1.1;    
}
h2 {
    font-size: 52px;
    line-height: 1.2;
    margin-top:0;
    margin-bottom: 20px;
}
h3 {
    font-size:32px;
    line-height: 38px;
}
h4 {
    font-size: 26px;
}
h5 {
    font-size:20px;
}
h6 {
    position: relative;
    font-weight: bold;
    color:var(--orange);
    font-size: 14px;
    letter-spacing: 1px;
    padding-left: 30px;
    display: inline-block;
    margin:0;
}
h6:before {
    content: '';
    background: url(https://piiraisensahkotyo.fi/wp-content/themes/piiraisensahkotyo/assets/flash.svg) no-repeat;
    width: 20px;
    height: 20px;
    background-size: contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}
.post, .page {
	margin:0;
}

.large h2 {
    font-size: 64px;
    margin-bottom: 0;
    margin-top:40px;
}
.large p {
    font-size: 24px;
}

/*** HEADER ***/
#headercontainer {
	position: fixed;
	top: 30px;
	width:100%;
	max-width: 100%;
	z-index: 9999;
	transition: 0.2s all ease-in-out;
}
.site-header {
    position: relative;
    height: 80px;
    max-width: var(--max-width);
    margin: 0 auto;
    transition: 0.2s all ease-in-out;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.1);
}
.hide-header {
	margin-top:-20px;
    opacity: 0;
    visibility: hidden;
}
.show-header {
	margin-top:0;
    opacity: 1;
    visibility: visible;
}
.site-title {
    position: absolute;
    top: 50%;
    left:30px;
    transform: translateY(-50%);
    display: flex;
    align-content: center;
}
.site-title img {
    width:130px;
    height: auto;
    object-fit: contain;
    margin-top:2px;
}
.header-cta {
	position: absolute;
	top:50%;
	right:10px;
	transform: translateY(-50%);
    margin:0 !important;
    padding-right: 70px !important;
}
.header-cta:after {
    content:'';
    background:url('https://piiraisensahkotyo.fi/wp-content/themes/piiraisensahkotyo/assets/flash.svg') no-repeat;
    width:30px;
    height: 30px;
    background-size: contain;
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    right:20px;
    -webkit-filter: invert(100%);
}
.header-cta:hover {
    filter:brightness(1.1);
}
.header-cta span {
	margin-right: 6px;
}


/*** BANNER ***/
.banner-container {
	height:80vh;
	min-height: 700px;
	position: relative;
	overflow: hidden;
}
.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    padding:0 60px;
    max-width: var(--max-width);
    width:100%;
    transform: translate(-50%,-50%);
    z-index: 1;
}
.banner-content h1 {
	color:var(--white);
	margin-bottom: 40px;
}
.banner-content p {
    color: var(--white);
    max-width: 940px;
    margin-bottom: 40px;
    font-size: 20px;
}
.banner-content p a {
    color:var(--orange);
    font-weight: 600;
    text-decoration: none;
}
.banner-image {
	position: relative;
}
.banner-image img {
	height:100vh;
	min-height: 700px;
	width:100%;	
	object-fit: cover;
	object-position: center 50%;
}
.banner-image-container {
    position: absolute;
    max-width: 400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.banner-image-container img {
    width: calc(50% - 10px);
    border-radius: 10px;
}
.image-overlay {
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.5);
}
pre {
    display: inline-block;
}
a.cta, pre a {
    display: inline-block;
    margin: 0 10px 0 0;
    padding: 20px 40px 18px 40px;
    font-size: 18px;
    background: var(--orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    transition: 0.3s filter ease-in-out;
    font-family: "Inter", sans-serif;
}
a.cta:hover, pre a:hover {
    filter:brightness(1.1);
}
.banner-container a.cta, .banner-container pre a {
	margin-top:0;
}
.banner-container a.cta:nth-of-type(2), .banner-container pre:nth-of-type(2) a {
    background:rgba(255,255,255,0.1);
    backdrop-filter:blur(10px);
}

/*** MAIN MENU ***/
.main-navigation {
    position: absolute;
    right: 240px;
    top:50%;
    transform: translateY(-50%);
}
.main-navigation ul {
    padding-left: 0;
}
.main-navigation ul li {
    list-style-type: none;
    display: inline-block;
    position: relative;
    margin: 0;
}
.main-navigation ul li a {
    position: relative;
    color: var(--black);
    padding: 20px 16px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    z-index: 2;
    transition: 0.3s all ease-in-out;
}
.main-navigation ul li a:hover {
    color: var(--orange);
}
.current-menu-item a {
    color: var(--orange) !important;
}


/*** MOBILE MENU ***/
.mobile-menu {  
	display: none;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);        
    z-index: 102;
    transition: all 300ms ease-in-out;
}
#nav-icon {
    width: 24px;
    height: 18px;
    position: relative;
    z-index: 100; 
    transform: rotate(0deg);
    transition: .5s ease-in-out;
  	cursor: pointer;
}
#nav-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 24px;
    background: var(--black);
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}
#nav-icon span:nth-child(1) {
    top: 0px;
}
#nav-icon span:nth-child(2),#nav-icon span:nth-child(3) {
    top: 8px;
}
#nav-icon span:nth-child(4) {
    top: 16px;
}
#nav-icon.open span:nth-child(1) {
    top: 14px;
    width: 0%;
    left: 50%;
}
#nav-icon.open span:nth-child(2) {
    transform: rotate(45deg);
}
#nav-icon.open span:nth-child(3) {
    transform: rotate(-45deg);
}
#nav-icon.open span:nth-child(4) {
    top: 14px;
    width: 0%;
    left: 50%;
}

/*** SIDENAV ***/
.overlay {
    background: var(--white);
    width: calc(100% - 80px);    
    position: fixed;
    z-index: 999;    
    top: 140px;
    left:40px;
    border-radius: 10px;
    box-shadow: 0px 4px 20px 10px rgb(0 0 0 / 10%);
    padding: 40px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s all ease-in-out;
    transform: scale(0.8);
}
.overlay ul {
    padding:0;
    margin:0;
}
.overlay ul li {
    padding:8px 0;
    margin:0;
    cursor:pointer;
    list-style-type: none;
}
.overlay ul li a {
    display: block;
    position: relative;
    text-decoration: none;
    color:var(--black);
    font-size: 24px;
    font-weight: 600;
    transition: 0.2s all ease-in-out;
}
.overlay ul li a:hover {
    color:var(--orange) !important;
}
.overlay ul ul {
    margin-top: 14px;
}
.overlay ul ul li a {
    font-size: 20px;
}
.overlay ul ul li {
    padding: 0px 14px;
}
.open-menu {
	visibility: visible;
    opacity: 1;
    transform: scale(1);
}


/*** CONTENT ***/
.white-container {
    position: relative;
	background:var(--white);
}
.white-container p, .white-container li {
	color:var(--grey);
}
.white-container p a, .white-container li a  {
	color:var(--orange);
    font-weight: 600;
	text-decoration: none;
}
.light-container {
    position: relative;
    background:var(--light);
}
.light-container p, .light-container li {
    color:var(--grey);
}
.light-container p a, .light-container li a  {
    color:var(--orange);
    font-weight: 600;
    text-decoration: none;
}
.black-container {
    position: relative;
    background:var(--black);
}
.black-container h1, .black-container h2, .black-container h3, .black-container h4, .black-container h5, .black-container h6 {    
    color:var(--white);
}
.black-container p, .black-container li {    
    color:var(--white);
}
.black-container a {     
    color:var(--white);
}
.site-content {
    width:100%;
    max-width: var(--max-width);
    margin:0 auto;
    padding:80px 60px;
    position: relative;
}
.site-content ul, .site-content ol {
	padding-left: 20px;
}
.flex-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.flex-container img {
	width:100%;
}
.flex-start {
	justify-content: start;
}
.flex-center {
    justify-content: center;
}
.flex-end {
	justify-content: end;
}
.align-center {
    align-items: center;
}
.flex-100 {
    width:100%;
}
.flex-66 {
    width:calc(66.66% - 40px);
    position: relative;
}
.flex-60 {
	width:calc(60% - 40px);
	position: relative;
}
.flex-50 {
    width:calc(50% - 40px);
    position: relative;
}
.flex-40 {
	width:calc(40% - 40px);
	position: relative;
}
.flex-33 {
    width:calc(33.33% - 40px);
    position: relative;
}
.flex-25 {
    width:calc(25% - 20px);
    position: relative;
}
.media-text .flex-image {
    order:1;
}
.media-text .flex-text {
    order:2;
}
.flex-image img {
    border-radius: 10px;
    min-height: 450px;
    max-height: 35vh;
    object-fit: cover;
    position: relative;
}
.flex-image:before {
	content:'';
	background:var(--orange);
	position: absolute;
	left:12px;
	bottom:-12px;
	width:100%;
	height:100%;
	border-radius: 10px;
}
.center {
    max-width: 991px;
    text-align: center;
    margin:0 auto;
}
.padding-top-80 {
    padding-top: 80px;
}
.padding-top-60 {
    padding-top: 60px;
}
.padding-top-40 {
    padding-top: 40px;
}
.padding-top-20 {
    padding-top: 20px;
}
.padding-bottom-80 {
    padding-bottom: 80px;
}
.padding-bottom-60 {
    padding-bottom: 60px;
}
.padding-bottom-40 {
    padding-bottom: 40px;
}
.padding-bottom-20 {
    padding-bottom: 20px;
}
.text-and-text .flex-text {
    padding: 40px;
    border-radius: 10px;
}
.white-container .text-and-text .flex-text {
    background:var(--light);
}
.light-container .text-and-text .flex-text {
    background:var(--white);
}
.flex-50-50 .flex-text {
    width: calc(50% - 40px); 
}
.flex-33-66 .flex-text:nth-of-type(1) {
    width: calc(33.33% - 40px); 
}
.flex-33-66 .flex-text:nth-of-type(2) {
    width: calc(66.66% - 40px); 
}
.flex-66-33 .flex-text:nth-of-type(1) {
    width: calc(66.66% - 40px); 
}
.flex-66-33 .flex-text:nth-of-type(2) {
    width: calc(33.33% - 40px); 
}

/*** ACCORDION ***/
.accordion {
    margin-bottom: 20px;
}
.accordion-item {
    position: relative;
    overflow: hidden;
    transition: 0.2s all ease-in-out;
    cursor: pointer;
    padding: 0 20px;
    margin-bottom: 10px;
}
.white-container .accordion-item {
    background: var(--light);
}
.light-container .accordion-item {
    background: var(--white);
}
.accordion-item:hover {
    opacity: 0.9;
}
.accordion-title h5 {
    margin: 24px 0 24px 0;
    padding-bottom: 0;
}
.accordion-item::after {
    content: '+';
    position: absolute;
    top: 36px;
    right: 30px;
    transform: translateY(-50%);
    font-size: 32px;
    line-height: 0;
    transition: 0.2s all ease-in-out;
    border-radius: 50px;
}
.accordion-content {
    padding: 0px 40px 20px 0;
    display: none;
}
.accordion-content p {
    margin-top: 0;
}
.accordion-item.active::after {
    content: '+';
    transform: rotate(135deg);
}
.accordion-content ul {
    margin-top:0;
}

/*** SERVICES ***/
.service {
    border-radius: 10px;
    background: var(--white);
	margin-bottom: 40px;
}
.service-image img {
    height: 260px;
    min-height: unset;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}
.service-content {
    padding: 40px;
    border-radius: 0 0 10px 10px;
}
.service-content h3 {
    margin-top: 0;
}

/*** HEIGHT ***/
.height-40, .height-40 video, .height-40 img {
    height: 40vh;
    min-height: 450px;
}
.height-50, .height-50 video, .height-50 img {
    height: 50vh;
    min-height: 550px;
}
.height-60, .height-60 video, .height-60 img {
    height: 60vh;
    min-height: 650px;
}
.height-70, .height-70 video, .height-70 img {
    height: 70vh;
    min-height: 750px;
}
.height-80, .height-80 video, .height-80 img {
    height: 80vh;
    min-height: 800px;
}
.height-90, .height-90 video, .height-90 img {
    height: 90vh;
    min-height: 900px;
}
.height-100, .height-100 video, .height-100 img {
    height: 100vh;
    min-height: 900px;
}

/*** WPFORMS ***/
.wpforms-container {
    margin-top: 0 !important;
}
.wpforms-field {
    overflow: visible !important;
}
.wpforms-field-large {
    height: 60px !important;
    border: none !important;
    border-radius: 6px !important;
    background: var(--light) !important;
    color: var(--black) !important;
    font-size: 18px !important;
    padding-left: 30px !important;
}
.wpforms-field-medium {
    height: 240px !important;
    border: none !important;
    border-radius: 6px !important;
    background: var(--light) !important;
    color: var(--black) !important;
    font-size: 18px !important;
    padding-left: 30px !important;
    padding-top:30px !important;
}
.wpforms-submit {
	height: 59px !important;
	color:var(--white) !important;
    background: var(--orange) !important;
    border:none !important;
    border-radius: 6px !important;
    padding: 20px 40px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    transition: 0.3s all ease-in-out !important;
    font-family: "Inter", sans-serif !important;
}
.wpforms-submit:hover {
    background: var(--dark-orange) !important;
}
.wpforms-form .wpforms-field {
  position: relative;
}
.wpforms-form .wpforms-field-label {
  position: absolute;
  top: 36px;
  left: 20px;
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 2;
}
.wpforms-form .wpforms-field:has(input:focus) > .wpforms-field-label,
.wpforms-form .wpforms-field:has(input:not(:placeholder-shown)) > .wpforms-field-label,
.wpforms-form .wpforms-field:has(textarea:focus) > .wpforms-field-label,
.wpforms-form .wpforms-field:has(textarea:not(:placeholder-shown)) > .wpforms-field-label {
  top: -9px;
  left: 0;
  font-size: 14px;
  color: var(--orange); 
}


/*** SANASTO ***/
.alphabet-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}
.alphabet-filter a {
    padding: 10px 14px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    color: var(--white);
    background: var(--orange);
    transition: all 0.2s ease;
    min-width: 46px;
    text-align: center;
}
.alphabet-filter a:hover, .alphabet-filter a.active {
    filter:brightness(1.1);
}

.flex-box-container {
    justify-content: start;
    gap: 30px;
}
.flex-box {
    background: var(--light);
}
.flex-box {
    position: relative;
    padding: 30px;
    border-radius: 10px;
}
.flex-box h3 {
    margin-top:0;
    line-height: 1.2;
}
.flex-box h3 a {
    text-decoration: none;
    color:var(--dark);
    font-size: 28px;
}


/*** LETTER HEADINGS ***/
.alphabet-letter {
    width: 100%;
    font-size: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--dark-orange);
}


.single-vocabulary-content {
    padding-top: 200px;
}
.single-vocabulary-content h1 {
    font-size: 46px;
}
.post-menu-container p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px !important;
    margin-top: 0;
    color:var(--dark) !important;
}
.post-menu-container a { 
    font-size: 20px;
    letter-spacing: -0.4px;
    font-weight: 700;
    text-decoration: none;
    transition:0.2s all ease-in-out;    
    color:var(--dark) !important;
}
.previous-post {
    width:50% !important;
    padding:30px;
    background:var(--white);
    border-radius: 20px;
}
.next-post {
    width:50% !important;
    padding:30px;
    background:var(--orange);
    border-radius: 20px;
}
p.breadcrumbs {
    font-size: 13px;
    font-weight: 700;
}
p.breadcrumbs a {
    color:var(--orange);
}





/*** FOOTERCONTAINER ***/
#footercontainer ul {
	padding:0;
	margin:0 0 20px 0;
}
#footercontainer ul li {
    list-style-type: none;
}
#footercontainer ul li a {
	text-decoration: none;
    transition: 0.3s all ease-in-out;
}
#footercontainer ul li a:hover {
    color:var(--orange);
}
.smallprint {
    margin-top: 40px;
    padding-top: 40px;
    border-top: solid 1px rgba(255, 255, 255, 0.1);
}

/*** KOMI-WIDGET ***/
h2.km-widget-title {
    font-family: "Inter", sans-serif !important;
}


/*** MEDIA QUERIES ***/
@media(max-width:1920px){

}
@media(max-width:1650px){
    h1 {
        font-size: 86px;
    }
    h2 {
        font-size: 42px;
    }
    .large h2 {
        font-size: 52px;
    }
    .site-header {
        max-width: calc(100% - 120px);
    }
    .site-title {
        left:10px;
    }
}

@media(max-width:1200px){
    h1 {
        font-size: 56px;
    }
    h2 {
        font-size: 36px;   
    }
    h3 {
        font-size: 22px;
    }
    .large h2 {
        font-size: 42px;
    }
    .site-header {
        max-width: calc(100% - 80px);
    }
    .site-content {     
        padding-left: 40px;
        padding-right: 40px;
    }
    .banner-content {
        padding:40px;
    }
    .banner-content p {
        font-size: 18px;
    }
    .large p {
        font-size: 18px;
    }
    .flex-66 {
        width:calc(66.66% - 20px);
        position: relative;
    }
    .flex-60 {
        width:calc(60% - 20px);
        position: relative;
    }
    .flex-50 {
        width:calc(50% - 20px);
        position: relative;
    }
    .flex-40 {
        width:calc(40% - 20px);
        position: relative;
    }
    .flex-33 {
        width:calc(33.33% - 20px);
        position: relative;
    }
    .flex-50-50 .flex-text {
        width: calc(50% - 20px); 
    }
    .flex-33-66 .flex-text:nth-of-type(1) {
        width: calc(33.33% - 20px); 
    }
    .flex-33-66 .flex-text:nth-of-type(2) {
        width: calc(66.66% - 20px); 
    }
    .flex-66-33 .flex-text:nth-of-type(1) {
        width: calc(66.66% - 20px); 
    }
    .flex-66-33 .flex-text:nth-of-type(2) {
        width: calc(33.33% - 20px); 
    }
    .single-vocabulary-content .flex-60 {
        width: 100%;
    }
}

@media(max-width:991px){
    h1 {
        font-size: 48px;
    }
    h2 {
        font-size: 32px;  
    }
    h3 {
        font-size: 20px;
    }
    p, li {
        font-size: 16px;
    }
    a.cta, pre a {
        font-size: 16px;
        padding: 16px 30px 16px 30px;      
    }   
    .large h2 {
        font-size: 32px;
    }
	.main-navigation {
        display: none;
    }
    .mobile-menu {
        display: block;
    }
    .header-cta {
        right: 80px;
    }  
}

@media(max-width:768px){
    h1 {
        font-size: 42px;
    }
    h2 {
        font-size: 30px; 
    }
    h3 {
        font-size: 20px;
    }	  
    h4 {
        font-size: 18px;
    }    
    h5 {
        font-size: 16px;
    }
    .overlay {
        width: calc(100% - 60px);
        left:30px;
    }
    .large h2 {
        font-size: 30px;
    }
    .site-header {
        max-width: calc(100% - 60px);
    }
    .header-cta {
        padding-right: 50px !important;
    }
    .header-cta:after {
        right: 12px;
    }
    .site-content {     
        padding-left: 30px;
        padding-right: 30px;
    }
    .banner-content {
        padding: 30px;
    }
    .banner-content p {
        margin-bottom: 20px;
    }
    .flex-50 {
        width:100%;
    }
    .flex-50.flex-image {
        order:1;
        margin-bottom: 40px;
    }
    .flex-50.flex-text {
        order:2;
    }
    .flex-33 {
        width: calc(50% - 20px);
    }
    .height-40, .height-40 video, .height-40 img {
        min-height: 400px;
    }
    .height-50, .height-50 video, .height-50 img {
        min-height: 400px;
    }
    .height-60, .height-60 video, .height-60 img {
        min-height: 500px;
    }
    .height-70, .height-70 video, .height-70 img {
        min-height: 600px;
    }
    .height-80, .height-80 video, .height-80 img {
        min-height: 600px;
    }
    .height-90, .height-90 video, .height-90 img {
        min-height: 700px;
    }
    .height-100, .height-100 video, .height-100 img {
        min-height: 700px;
    }
    .flex-image img {
        min-height: 300px;
    }
    .padding-top-80 {
        padding-top: 40px;
    }
    .padding-top-60 {
        padding-top: 30px;
    }
    .padding-top-40 {
        padding-top: 20px;
    }
    .padding-bottom-80 {
        padding-bottom: 40px;
    }
    .padding-bottom-60 {
        padding-bottom: 30px;
    }
    .padding-bottom-40 {
        padding-bottom: 20px;
    }
    .previous-post, .next-post {
        width:100% !important;
    }
    .single-vocabulary-content h1 {
        font-size: 36px;
    }
}

@media(max-width:520px){
    h1 {
        font-size: 36px;
    }
    h2 {
        font-size: 26px;   
    }
    h3 {
        font-size: 18px;
    } 
    p, li {
        font-size: 14px;
    }
    a.cta, pre a {
        font-size: 14px;   
        padding: 14px 20px 14px 20px;     
    }    
    .mobile-menu {    
        right: 20px;
    }
    #headercontainer {
        top: 20px;
    }
    .site-header {
        height: 60px;
    }
    .site-title img {
        width: 110px;     
    }
    .header-cta {
        right: 65px;
        padding-right: 20px !important;
    }
    .header-cta:after {
        display: none;
    }
    .large h2 {
        font-size: 26px;
    }
    .banner-content p {
        font-size: 16px;
    }
    .large p {
        font-size: 16px;
    }
    .site-header {
        max-width: calc(100% - 40px);
    }
    .site-content {     
        padding-left: 20px;
        padding-right: 20px;
    }
    .banner-content {
        padding: 20px;
    }   
    .overlay {
        width: calc(100% - 40px);
        left:20px;
        top:100px;
    }
    .overlay-content {
        padding:20px;
    }
    .overlay ul li a {
        font-size: 20px;
        line-height: 28px;
    }
    .overlay ul ul li a {
        font-size: 15px;
    }   
    .flex-box {     
        padding: 20px;
    }
    .flex-box h3 a {
        font-size: 24px;
    }
    .previous-post, .next-post {
        padding:20px;
    }
    .single-vocabulary-content h1 {
        font-size: 28px;
    }
    .alphabet-filter {     
        gap: 6px;
    }
    .alphabet-filter a {
        padding: 8px 8px;
        border-radius: 4px;     
        min-width: 34px;
        font-size: 14px;
    }
    .post-menu-container p {
        font-size: 13px;     
    }
    .post-menu-container a {
        font-size: 16px;
        letter-spacing: 0px;        
    }
    .single-vocabulary-content {
        padding-top: 120px;
    }
}