/* start grid section */
/* start card style */
.card {
    text-decoration: none;
    height: auto;
    display: flex;
    flex-direction: column;
    position: relative;
    color: var(--black);
    background: var(--foreground);
    border-radius: 1rem;
    box-shadow: 0 4px 30px var(--shadow);
    padding: 0;
}

.thumb {
    width: 100%;
    padding-bottom: 100%;
    background-size: cover;
    background-position: center center;
    border-radius: 1rem 1rem 0 0;
}

.category {
    height: 40px;
    width: auto;
    padding: 0 0.5rem 0 0;
    position: absolute;
    top: 1rem;
    left: 1rem;
    border-radius: 40px;
    color: var(--foreground);
    border: 1px solid var(--foreground);
    background: var(--blueglas);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.coWrap {
    display: flex;
    flex-direction: row;
}

.aut-img {
    width: 40px;
    height: 40px;
    margin: 0;
    border-radius: 40px;
}

.tag {
    margin: 5px 0 0 0.5rem;
    font-size: 21px;
    text-transform: uppercase;
}

article {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    text-align: left;
    flex: 1;
    justify-content: space-between;
}

.date {
    font-size: 0.7rem;
    font-family: monospace;
    letter-spacing: 0.05rem;
}

/* end card style */
/* end grid section */

/* start responsive design */
/* screen larger than 600px 2 column */
@media (min-width: 600px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .c-3 {
        grid-column: span 2;
        flex-direction: row;
      }
      
      .t-3 {
        width: 60%;
        padding-bottom: 0;
        border-radius: 1rem 0 0 1rem;
      }
}

/* screen larger than 900px 3 columns */
@media (min-width: 900px) {}

/* end responsive design */