body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f6f7fb;
}

/* CONTAINER */
.portal {
    max-width: 1200px;
    margin: auto;
    padding: 30px;
}

/* HERO */
.hero {
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 30px;
    margin-bottom: 5px;
    color: #1f2937;
}

.hero p {
    color: #6b7280;
    margin-bottom: 15px;
}

.hero input {
    width: 100%;
    max-width: 420px;
    padding: 10px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    outline: none;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
}

/* CARD */
.card {
    background: #fff;
    border: 1px solid #eef0f4;
    border-radius: 14px;
    padding: 16px;
    transition: 0.2s;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* HEADER */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.card-header h3 {
    font-size: 15px;
    margin: 0;
    color: #111827;
}

/* STATUS */
.status {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #374151;
    text-transform: capitalize;
}

/* META */
.meta p {
    font-size: 13px;
    margin: 4px 0;
    color: #374151;
}

/* TAGS */
.tags {
    margin-top: 10px;
}

.tag {
    display: inline-block;
    font-size: 11px;
    background: #f3f4f6;
    padding: 4px 8px;
    border-radius: 8px;
    margin: 2px;
    color: #374151;
}

/* SPONSOR STYLE */
.tag.sponsor {
    background: #e8f0fe;
    color: #1a73e8;
}

/* BUTTON */
.btn {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 12px;
    background: #2d6cdf;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 13px;
    text-align: center;
}

.btn:hover {
    background: #1f56c4;
}