
.container::before {
    content: "INTERNET TOYBOX - HOME";
    position: absolute;
    top: -10px;
    left: 14px;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;

    background: #e9e9e9;
    padding: 2px 6px;
    border: 1px solid #c7c7c7;
}


.hero {
    margin-bottom: 18px;
}

.logo {
    width: 320px;
}

.section {
    margin: 26px auto;
    padding: 14px;
    max-width: 980px;
}

.tagline {
    font-size: large;
    margin-top: -5px;
}


.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 12px;
}

.card {
    padding: 14px;
    border: 1px solid #cfcfcf;
    background: #fff;
    box-shadow: 0 1px 0 #fff inset;
    position: relative;
    transition: transform .15s ease;
}

.card::before {
    content: "";
    position: absolute;
    width: 15px;
    border-bottom-right-radius: 20px;
    height: 15px;
    top: 0;
    left: 0;
    background: var(--toy-blue);
}

.card:nth-child(2)::before { background: var(--toy-orange); }
.card:nth-child(3)::before { background: var(--toy-green); }
.card:nth-child(4)::before { background: var(--toy-purple); }

.card:hover {
    transform: translateY(-2px);
}