/*
 Theme Name:   MINO 2024
 Theme URI:    https://generatepress.com
 Description:  A MINO Digital child theme for GeneratePress
 Author:       Ivan Oung
 Author URI:   https://www.ivanoung.io
 Template:     generatepress
 Version:      4.0
*/

/* Last update: 2025-09-04 */

/* THEME TWEAKS */

/* Text balance / Pretty */
:is(h1, h2, h3, h4, h5, h6),
.balance {
    text-wrap: balance;
}

p,
div,
blockquote,
li {
    text-wrap: pretty;
}

p:last-child:last-of-type {
    margin-bottom: 0px;
}


/* Line limits */
.line-limit-3,
.line-limit-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-limit-3 {
    -webkit-line-clamp: 3;
}

.line-limit-2 {
    -webkit-line-clamp: 2;
}

/* Fluid square */
.square {
    width: 100%;
    height: 0;
    padding-top: 100%;
}

/* Visually hidden */
.visually-hidden:not(:focus):not(:active) {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}