@font-face {
	font-family:"Edo SZ";
	src: url("/assets/fonts/edosz_0.ttf");
}

.grm-logo {
	font-family:"Edo SZ";
	transform: rotate(-3deg)!important;
	color: #ffffff!important;
	font-size: 72px!important;
}
.center {
	text-align: center;
}

/* Front Page Recent Videos - CGPT*/
.grm-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.grm-video-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.grm-video-card.featured {
    max-height: 400px; /* Adjust as needed */
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.grm-video-card.featured .grm-thumbnail {
    max-height: 220px;
    object-fit: cover;
    width: 100%;
}

.grm-video-card:hover {
    transform: translateY(-5px);
}

.grm-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.grm-video-info {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.grm-video-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
    flex-grow: 1;
}

.grm-watch-button {
    background: #FC0000;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background 0.2s ease;
}

.grm-watch-button:hover {
    background: #d00000;
}

/*
.yt-video {
	text-align:center;
	background-color: #000;
	color: #fff;
	padding: 5px;
}

.yt-video-thumbnail {
}

.yt-video-thumbnail-link {
}

.yt-video-info-container {
}

.yt-video-title {
}

.yt-watch-title-link {
	color: #fff!important;
}

.yt-video-watch-button {
	cursor: pointer;
	background-color: #ca0000;
	padding: 5px;
	border-radius: 2px;
}
*/

/* Front Page Stats */
.yt-stats-badge {
	color: #fff!important;
	font-size: 14px;
	background-color: #ca0000;
	padding: 5px;
	border-radius: 5px;
	position: relative;
	top: -23px;
	font-weight: bold!important;
}

#yt-grm-stats-failure {
	background-color: #ca0000;
	padding: 5px;
	border-radius: 2px;
}

.mini-view {
	display: none!important;
}

.full-view {
	display: initial!important;
}

@media all and (max-width: 900px) {  
  .mini-view {
    display: initial!important;
  }

  .full-view {
    display: none!important;
  }
}