/*
 Theme Name:   DeveloSquad Theme
 Theme URI:    https://develosquad.com
 Description:  This is a child theme Developed by DeveloSquad team!
 Author:       Vidyut Pal
 Author URI:   https://vidyutpal.com
 Template:     generatepress
 Version:      0.1
*/

/* Fluid Typography Scale */

h1, .fs-h1 {
	font-size: clamp(2.2rem, 2rem + 0.6vw, 2.5rem); /* ~35–40px */
}

h2, .fs-h2 {
	font-size: clamp(1.8rem, 1.65rem + 0.45vw, 2.1rem); /* ~29–34px */
}

h3, .fs-h3 {
	font-size: clamp(1.5rem, 1.4rem + 0.4vw, 1.8rem); /* ~24–28px */
}

h4, .fs-h4 {
	font-size: clamp(1.3rem, 1.2rem + 0.3vw, 1.5rem); /* ~21–24px */
}

h5, .fs-h5 {
	font-size: clamp(1.1rem, 1.05rem + 0.25vw, 1.3rem); /* ~18–21px */
}

h6, .fs-h6 {
	font-size: clamp(1rem, 0.95rem + 0.2vw, 1.1rem); /* ~16–18px */
}


p, .fs-p {
	font-size: 1rem;
}



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


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

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

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



