/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/*
    Add your custom styles here
*/
.video-posts-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 60px;
  align-items: start;
}

.video-post-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #d6ff00;
  border-bottom: 3px solid #d6ff00;
  border-radius: 3px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.video-post-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.media-wrapper img,
.video-wrapper iframe {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.video-post-content {
  padding: 25px 25px 35px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-tags {
  margin-bottom: 10px;
}

.post-tags .tag-item {
  font-size: 14px;
  color: #d6ff00;
  margin-right: 10px;
  text-transform: lowercase;
}

.post-title {
  font-size: 22px;
  color: #143414;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.post-excerpt {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 30px;
}

.post-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  background: #fff;
  color: #143414;
  border: 1px solid #d6ff00;
  border-bottom: 3px solid #d6ff00;
  padding: 12px 22px;
  text-decoration: none;
  width: fit-content;
  transition: all 0.25s ease;
}

.post-button:hover {
  background-color: #d6ff00;
  color: #143414;
  transform: translateY(-2px);
}

.post-button svg {
  transition: transform 0.25s ease;
}

.post-button:hover svg {
  transform: translate(3px, -3px);
}