/* Grabaciones — public styles */


.grab-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

@media(min-width: 768px) {
    .grab-container {
        margin: 60px auto 0;
    }
}

/* Archive */
.grab-archive__header h1 {
    margin-bottom: 1.5rem;
}

.grab-day {
    margin-bottom: 2.5rem;
}
.grab-day__heading {
    font-size: 1.25rem;
    margin: 0 0 1rem;
    padding-bottom: .35rem;
    border-bottom: 1px solid #e2e2e2;
    text-transform: capitalize;
}

.grab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.grab-card {
    background: #fff;
    border: 1px solid #b4d5e0;
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow .15s ease, transform .15s ease;
}
.grab-card:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,.08);
    transform: translateY(-2px);
}
.grab-card__link {
    display: block;
    color: inherit;
    text-decoration: none !important;
}

.grab-card__cover {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: #f3f3f3;
}
.grab-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.grab-card__body {
    padding: .9rem 1rem 1.1rem;
}
.grab-card__title {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 1em;
    line-height: 1.2em;
    color: #00485E;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 2.4em;
}

.grab-card__brief {
    margin: 0 0 .5rem;
    color: #4a4a4a;
    font-size: .9em;
    line-height: 1.45;
}
.grab-card__speakers {
    margin: 0 0 12px;
    color: #6093a2;
    line-height: 1.2;
    font-size: .9em;
}

.grab-card__btn {
    border-radius: 2px;
    background-color: #00485E;
    color: #fff;
    transition: all .15s ease;
    padding: 12px;
    font-size: .9em;
    text-align: center;
    margin-top: 12px;
}

.grab-card:hover .grab-card__btn {
    background-color: #0a607b;
}

.grab-empty {
    padding: 2rem 0;
    color: #777;
}

/* Single */
.grab-single__title {
    margin: .5rem 0 .25rem;
}
.grab-single__date {
    color: #777;
    margin: 0 0 1rem;
    text-transform: capitalize;
}
.grab-single__back {
    margin-bottom: 1rem;
}
.grab-single__back a {
    color: #555;
    text-decoration: none;
}

.grab-single__cover-wrap {
    margin: 0 0 1.5rem;
}
.grab-single__cover {
    display: block;
    width: min(100%, 700px);
    height: auto;
    border-radius: 10px;
    margin: 0 auto;
}

.grab-single__player {
    position: relative;
    padding-top: 56.25%;
    background: #000;
    margin: 0 0 1.5rem;
    border-radius: 10px;
    overflow: hidden;
}
.grab-single__player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.grab-single__brief {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.grab-single__speakers h2 {
    font-size: 1.2rem;
    margin-top: 2rem;
}
.grab-speaker-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.grab-speaker {
    padding: 1rem 0;
    border-top: 1px solid #eee;
}
.grab-speaker__name {
    margin: 0 0 .15rem;
    font-size: 1.05rem;
}
.grab-speaker__job {
    margin: 0 0 .5rem;
    color: #777;
    font-style: italic;
}
.grab-speaker__bio {
    color: #444;
    line-height: 1.55;
}

.grab-single__logout {
    margin-top: 2rem;
    text-align: right;
}

/* Login */
.grab-login__container {
    max-width: 420px;
}
.grab-login__form p {
    margin: 0 0 1rem;
}
.grab-login__form label {
    display: block;
    font-weight: 600;
    margin-bottom: .25rem;
}
.grab-login__form input[type=email],
.grab-login__form input[type=password] {
    width: 100%;
    padding: .55rem .65rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
}
.grab-login__submit {
    background: #006f79;
    color: #fff;
    border: 0;
    padding: .6rem 1.25rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    display: block;
    width: 100%;
    transition: all 150ms ease;
    border: 2px solid #006f79;
}
.grab-login__submit:hover {
    color: #135e96;
    background: #fff;
}

.grab-notice {
    padding: .65rem .85rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}
.grab-notice--error {
    background: #fbeaea;
    color: #8a1f1f;
    border: 1px solid #e6b3b3;
}
.grab-notice--success {
    background: #e8f5e9;
    color: #1b5e20;
    border: 1px solid #b9dabb;
}
