/**
Theme Name: Astra Child Mook
Author: JDC Mediaworks
Author URI: https://jdcmediaworks.com
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child-mook
Template: astra
*/

.circle {
  width: 100px;
  height: 100px;
  background-color: black;
  border-radius: 50%;
  color: white;
  text-align: center;
  line-height: 50px;
  font-size: 100px;
}
.project-title {
	font-size: 22px;
	font-weight: bold;
}
.project-item {
    max-width: 400px; /* or any desired max width */
    margin: 24px auto;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-radius: 8px;
    background: #f8f9fa; /* light background color */
    border: 1px solid #e2e2e2;
    overflow: hidden;
    padding: 0; /* remove padding to avoid width issues */
}

.project-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px 8px 0 0; /* rounded top corners to match container */
}

.project-details {
    padding: 16px 24px;
    box-sizing: border-box; /* ensure padding doesn't affect width */
    color: #333;
    font-family: inherit;
	font-size: 16px;
}

.project-details .project-detail {
    margin-bottom: 1px;
    display: flex;
    align-items: baseline;
}

.project-details .project-detail:last-child {
    margin-bottom: 0;
}

.project-details .label {
    font-weight: bold;
    color: #333;
    min-width: 130px;
    display: inline-block;
}

.project-details .value {
    color: #555;
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px; /* space between cards, adjust as needed */
    margin: 0 auto;
    max-width: 1200px; /* optional: constrain overall grid width */
    padding: 24px 0;
}

.project-item {
    /* Remove margin: auto from previous CSS if present */
    margin: 0;
}
@media (max-width: 900px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}
