* { outline: 1px dotted #F00;}  
:root {
    --general-bg: #ecf1f5;
}  

@font-face {
  font-display: swap; 
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 200;
  src: url('../fonts/outfit-v14-latin-200.woff2') format('woff2');
}
/* outfit-300 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/outfit-v14-latin-300.woff2') format('woff2');
}
/* outfit-regular - latin */
@font-face {
  font-display: swap; 
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/outfit-v14-latin-regular.woff2') format('woff2');
}
/* outfit-900 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/outfit-v14-latin-900.woff2') format('woff2');
}
html {
    padding: 0;
    margin: 0;
    text-align: center;
}
body {
    background-color: var(--general-bg);
    margin: 0;
    padding: 0;
    color: #888;
    text-align: center;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 1rem;
}
a, a:link, a:active, a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
img {
    width: 100%;
    height: auto;
}
h1,h2,h3,h4,h5 {
    margin: 0;
    padding: 0;
    font-weight: normal;
    text-align: left;
}
.wrap {
    max-width: 1400px;
    margin-inline: auto;
    padding-inline: 1.5rem;

}
.logoline {
        background-color: #2b3245;
    height: 3rem;
    text-align: left;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    padding-block: .5rem;
}
    .logoline span {
        color: ;
    }
    .logoline a, .logoline a:hover {
        color: ;
    }
h1 {
    font-size: 1.2rem;
}  
 
.categoryline {
    background-color: #fff;
}
main {
    clear: both;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1rem;
    text-align: left;    
    padding-top: 1rem;
    font-size: 0;
}
    .content {
        background-color: #fff;
        display: grid;
        grid-template-columns: 150px 1fr;
        gap: 1rem;
    }
    .preview {
        object-fit: cover;
        /* height: max(120px, 10vh); */
        aspect-ratio: 10/3;
    }
    .description {
        /* padding: 0 .5rem 1rem .5rem; */
    }
    .content.title {
        font-size: 2rem;
        color: var(--clr-orange);
        font-weight: 400;
        padding: 0;
        line-height: 1;
        padding-top: .5rem;
        /* padding-left: .5rem; */
    }
    /* .content.domain {
        display: inline-block;
        background-color: #a1cd43;      
        font-size: 1rem;  
        padding: .25rem .6rem;
        color: #fff;
        border-radius: .12rem;
        margin-block: .5rem;
    } */
    .content p {
        color: #888;
        margin: 0;
        font-size: 1rem;
    }  
footer {
    height: 3rem;
}    