/* embed */
.embed {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.embed iframe {
    width: 100%;
    height: 100%;
}

.info {
    width: 100%;
}

/* metrics */
.metrics > * {
    display: flex;
    flex-direction: row;
    padding: 10px;
    background-color: var(--secondary-color);
}

.metrics > *:first-child {
    border-left: none !important;
}

.metrics > *:last-child  {
    border-right: none !important;
}

.metrics > div > div:first-child {
    color: grey;
}

.metrics > div > div:nth-child(2) {
    color: white;
}

@media (max-width: 992px) {
    .metrics > div > div {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .metrics > div > div {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .metrics > div {
        flex-direction: column;
        align-items: center;
        padding: 0px;
        gap: 0px !important;
    }
    .metrics > div > div {
        font-size: 14px;
    }
}

/* details */
.details {
    background-color: var(--secondary-color);
}

/* categories */
.categories-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.categories-title {
    color: white;
    font-size: 16px;
}

.category-item {
    background-color: var(--background-color);
}

.description {
    color: grey !important;
    font-size: 16px;
}

/* buttons */
.icon {
    width: 30px;
    height: auto;
}

/* shares */
.shares {
    display: flex;
    gap: 20px;
    list-style: none;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 8px solid var(--background-color) !important;
    background-color: var(--secondary-color);
}

.shares > div {
    color: grey;
    text-align: center;
    padding-top: 5px;
}

/* report */
.report {
    padding: 10px;
    border-top: 8px solid var(--background-color) !important;
    background-color: var(--secondary-color);
}