/*
Theme Name: Roxeen child
Theme URI: https://landing.rivaxstudio.com/roxeen/
Author: RivaxStudio
Author URI: https://themeforest.net/user/rivaxstudio/
Description: Roxeen is Designed for lightweight WordPress Magazine, Blog and Newspapaer Websites.
Version: 1.0.1
Template:  roxeen
License: Themeforest.net
License URI: http://themeforest.net/licenses
Text Domain: roxeen
Tags: blog, magazine, minimal, lightweight
*/
.coloring-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin: 40px 0;
}

@media (min-width: 768px) {
  .coloring-page-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.coloring-page-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.coloring-page-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f8f8f8;
}

.coloring-page-image {
  width: 100%;
  height: auto;
  display: block;
}

.coloring-page-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}

.coloring-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.coloring-page-btn-print {
  background-color: #ff376c;
  color: #fff;
}

.coloring-page-btn-print:hover {
  background-color: #e61f59;
  color: #fff;
}

.coloring-page-btn-download {
  background-color: #7267ff;
  color: #fff;
}

.coloring-page-btn-download:hover {
  background-color: #5a4fe6;
  color: #fff;
}
