/*
 Theme Name:   SALTY Theme
 Theme URI:    https://saltycom.se
 Description:  SALTY Theme for GeneratePress
 Author:       Johan
 Author URI:   https://saltycom.se
 Template:     generatepress
 Version:      1.0
*/


/* aspect ratios */
.ar-16-9 {
    aspect-ratio: 16/9;
}

.ar-9-16 {
    aspect-ratio: 9/16;
}

.ar-4-3 {
    aspect-ratio: 4/3;
}

.ar-1-1 {
	aspect-ratio: 1/1;
}


/* no underline links */
.no-ul, .no-ul a {
	text-decoration: none;
}


/* remove bottom margin on last paragraph */
.gb-container p:last-child:last-of-type {
    margin-bottom: 0px;
}

.block-editor-block-list__layout .gb-container p:nth-last-child(2) {
    margin-bottom: 0px;
}


/* list padding */
ul {
    margin-left: 20px;
    margin-bottom: 0px;
}

ol {
    margin-left: 20px;
    margin-bottom: 0px;
}


/* stretch link */
.stretch-link{
	position: relative;
}

.stretch-link a::after{
	content: '';
	position: absolute;
	inset: 0;
}

.stretch-link a:is(:focus-visible)::after{
	outline: 2px solid;
}

.stretch-link a:is(:hover, :focus){
	outline: none;
}